I have a problem with Babel CLI. It copies my JS-files without conversion from JS6 to JS5. Here is my small "Hello World" project code sources for demonstrate of this problem.
In the scripts
section of the project.json
file I added the row:
"babel": "babel src/js -d test/lib"
I launch it by the command:
npm run babel
Why does it happen?
Thank you.