Remove babel-node from babel-cli (#6251)

* Remove babel-node from babel-cli

* Use new Array instead of Array for V8 optimization

* Remove extraneous use strict clauses

* Require babel-node in babel-cli

* Remove babel-node from babel-cli

* Require babel-node in babel-cli

* Remove babel-node executable from babel-cli

* Clean up babel-node from package.json
This commit is contained in:
Pranav Prakash
2017-09-23 23:55:28 +05:30
committed by Logan Smyth
parent b115ea5da7
commit 2374062bbd
27 changed files with 1 additions and 382 deletions

View File

@@ -127,10 +127,6 @@ const buildTest = function(binName, testName, opts) {
args.push("--presets", presetLocs, "--plugins", pluginLocs);
}
if (binName === "babel-node") {
args.push("--only", "../../../../packages/*/test");
}
args = args.concat(opts.args);
const spawn = child.spawn(process.execPath, args);