So I\'m running tasks in npm package scripts but I want to pass the watch option in npm start.
npm start
This works:
\"scripts\": { \"scss\": \"
Btw, here's my change:
"scss": "node-sass src/style.scss dist/style.css", "start": "parallelshell \"npm run scss && npm run scss -- -w\"
Edit: Change was asynchronous script runs, for the initial compile and then with the watch flag.