Tôi không thể nhận npm để làm việc. Tệp package.json của tôi có
"scripts": { "build": "build.js" }
và tôi có một tệp build.js trong cùng một thư mục chỉ console.logs.
Khi tôi chạy
npm run build
Tôi nhận được lỗi
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
và nếu tôi di chuyển tệp build.js và thay đổi tệp package.json của mình để có một thư mục con
"scripts": { "build": "build/build.js" }
sau đó tôi nhận được lỗi
'build' is not recognized as an internal or external command, operable program or batch file.
Có chuyện gì vậy? Tôi đang sao chép tài liệu ví dụ .