admin管理员组文章数量:1352069
I have a package.json
script for example npm run script1
and I have also private npm package which is added as a dependency in my project and this package has also scripts in package.json
and this script name script2
. I want that when I run npm run script1
then run automatically start script2. Is that possible?
Thank you.
I have a package.json
script for example npm run script1
and I have also private npm package which is added as a dependency in my project and this package has also scripts in package.json
and this script name script2
. I want that when I run npm run script1
then run automatically start script2. Is that possible?
Thank you.
Share Improve this question edited Jan 22, 2019 at 14:48 Xhens 8123 gold badges13 silver badges34 bronze badges asked Jan 22, 2019 at 14:33 Onur Sabit SalmanOnur Sabit Salman 551 silver badge7 bronze badges2 Answers
Reset to default 9Package.json
"scripts": {
"runbothscripts": "npm run script1 && npm run script2"
}
Should run both scripts for you if you execute it by doing npm run runbothscripts
.
If script2
would be in a different folders package.json you also first navigate to that folder by doing cd ./otherfolder && npm run script2
Use npm explore mand. For example, to run a test script from lodash after running eslint, add this script in your package.json file:
"scripts": {
"script1": "eslint . && npm explore lodash -- npm run test"
}
Then run it as:
npm run script1
本文标签: javascriptUsing packagejson script to run another packagejson scriptStack Overflow
版权声明:本文标题:javascript - Using package.json script to run another package.json script - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743614924a2510588.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论