"node_modules"未被识别为内部或外部命令



' PS E:WebJavascript课程Babel Practice>NPM run babel

> weather_app@1.0.0 babel
> node_modules/.bin/babel src/index.js -o dist/assets/bundle.js
'node_modules' is not recognized as an internal or external command,
// I'm using this script
"scripts": {
"babel": "node_modules/.bin/babel src/index.js -o dist/assets/bundle.js"
}
// Even if I add './' in start, it does not work
'.' is not recognized as an internal or external command,`

您必须在以下命令之前执行此命令:run npm install它将安装必要的依赖项来运行您想要运行的命令

相关内容

  • 没有找到相关文章