npm이 작동하지 않습니다. 내 package.json 파일에는
"scripts": { "build": "build.js" }
console.logs와 동일한 폴더에 build.js 파일이 있습니다.
내가 달릴 때
npm run build
오류가 발생합니다
The system cannot execute the specified program.
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "build"
npm ERR! node v4.1.1
npm ERR! npm v3.3.5
npm ERR! code ELIFECYCLE
build.js 파일을 이동하고 package.json 파일을 하위 폴더로 변경하면
"scripts": { "build": "build/build.js" }
그런 다음 오류가 발생합니다.
'build' is not recognized as an internal or external command, operable program or batch file.