mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
ECMAScript = {
|
|
compileForShell(command) {
|
|
const babelOptions = Babel.getDefaultOptions();
|
|
babelOptions.sourceMap = false;
|
|
babelOptions.ast = false;
|
|
babelOptions.externalHelpers = true;
|
|
return Babel.compile(command, babelOptions).code;
|
|
}
|
|
};
|