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 badges
Add a ment  | 

2 Answers 2

Reset to default 9

Package.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