Merge pull request #3333 from loganfsmyth/improve-cli-error

Improve the error messaging for using the wrong CLI script.
This commit is contained in:
Amjad Masad 2016-02-07 14:37:15 -08:00
commit ba40f6979b

View File

@ -1,4 +1,10 @@
#!/usr/bin/env node
console.error("The CLI has been moved into the package `babel-cli`. See http://babeljs.io/docs/usage/cli/");
console.error("You have mistakenly installed the `babel` package, which is a no-op in Babel 6.\n" +
"Babel's CLI commands have been moved from the `babel` package to the `babel-cli` package.\n" +
"\n" +
" npm uninstall babel\n" +
" npm install babel-cli\n" +
"\n" +
"See http://babeljs.io/docs/usage/cli/ for setup instructions.");
process.exit(1);