有没有理由" ./ bin / post_install.sh"和" bin / post_install.sh"在script.json的scripts.postinstall中会失败吗?在根目录中正常工作,但随着更多可执行文件等的添加,这将很快成为一场噩梦。
"scripts": {
"postinstall": "./bin/post_install.sh"
},
和
"scripts": {
"postinstall": "bin/post_install.sh"
},
两者都错过了#34;。"或" bin"不被承认为内部或外部命令?但npmjs上的示例显示" scripts / file.js"作为一个例子???
由于
答案 0 :(得分:0)
解决了它,我使用的是Windows,所以必须使用\。希望这有助于某人。
示例:
"scripts": {
"postinstall": "bin\\post_install.sh"
},