npm chain command

Is possible to chain two commands in one run  configuration?

 

I'm trying to run build and one custom Packege,json script entry

 

0
1 comment

Invoke these scripts via npm run and chain them with double ampersand &&:

"start": "npm run build && npm run post_build"

Or, if you like to keep them as separate npm scripts, add a script that runs build commands to Before launch section of run configuration that executes your other custom entry

0

Please sign in to leave a comment.