mirror of https://github.com/jkjoy/sunpeiwen.git
11 lines
383 B
JavaScript
11 lines
383 B
JavaScript
function emitWarning() {
|
|
if (!emitWarning.warned) {
|
|
emitWarning.warned = true;
|
|
console.log(
|
|
'Deprecation (warning): Using file extension in specifier is deprecated, use "highlight.js/lib/languages/shell" instead of "highlight.js/lib/languages/shell.js"'
|
|
);
|
|
}
|
|
}
|
|
emitWarning();
|
|
import lang from './shell.js';
|
|
export default lang; |