I want to run yarn dev
to start pm2 and webpack in watch mode for development. Problem is that I need to kill pm2 instance (run yarn pm2:del
) when I terminate manually pressing "CTRL+C". How can it be done?
package.json:
"scripts": {
"dev": "yarn pm2:del && yarn pm2:dev && yarn wp:dev",
"pm2:dev": "pm2 start ecosystem.config.js --only dev",
"pm2:del": "pm2 delete all || exit 0",
"wp:dev": "webpack --mode=development --watch"
}
I've created
dev.sh
script:And run it using
yarn dev
: