grunge-stack icon indicating copy to clipboard operation
grunge-stack copied to clipboard

Replace `run-p` with `npm-run-all -p-` because the former doesn't kill all process when pressing CTRL+C in windows

Open GiancarlosIO opened this issue 2 years ago • 0 comments

Have you experienced this bug with the latest version of the template?

yes

Steps to Reproduce

  1. run npx create-remix my-app --template remix-run/grunge-stack
  2. cd my-app
  3. run pnpm dev
  4. Try to kill the process pressing CTRL+C

Expected Behavior

On windows, pressing CTRL+C should kill all the processes of the "dev" npm script.

Actual Behavior

On windows, pressing CTRL+C DOESN'T kill all the processes of the "dev" npm script. It works if I replace the run-p with npm-run-all -p

GiancarlosIO avatar Aug 21 '22 19:08 GiancarlosIO