Я следовал этому руководству https://medium.com/@bneiluj/es6-with-babel-in-your-node-app-3f254f6aa65f, чтобы понять, как работает узел на babel.Поэтому я сделал все то же самое, но не смог запустить babel, так как после запуска npm run prepublish
> cabinet@1.0.0 prepublish
/Users/.../PhpstormProjects/***/cabinet
> npm run compile
> cabinet@1.0.0 compile /Users/.../PhpstormProjects/***/cabinet
> babel — presets es2015 -d lib/ app/
— doesn't exist. presets doesn't exist. es2015 doesn't exist
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! cabinet@1.0.0 compile: `babel — presets es2015 -d lib/ app/`
npm ERR! Exit status 2
возникла следующая ошибка, но es2015 был установлен, и он четко видит в package.json
{
"name": "cabinet",
"version": "1.0.0",
"description": "",
"main": "lib/run.js",
"scripts": {
"compile": "babel — presets es2015 -d lib/ app/",
"prepublish": "npm run compile",
"babel-version": "babel --version"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}
структура моего проекта выглядит следующим образом
- cabinet/
- app/
- run.js
- lib/ # compiled one from app/
- node_modules/
.babelrc
.package.json