I have some custom testing script, which I can run with npm run test
command, which executes some Node script for starting e2e/unit tests. But before it I must start webpack dev server with npm run dev
(it's a some custom Node script too, details doesn't matter) in other terminal window. So, I want to omit npm run dev
manually executing and move it to custom npm run test
script, i.e. I want to execute webpack dev server programmatically in Node script. How can I execute npm run dev
programmatically using Node script and stop it then?
"dev": "node node_modules/webpack-dev-server/bin/webpack-dev-server.js --host 0.0.0.0 --history-api-fallback --debug --inline --progress --config config/config.js"