npm-run-all
npm-run-all copied to clipboard
[BUG] nodemon v2.0.6 not working with npm-run-all --parallel in nodejs v14.15.1 LTS
I have a similar issue with parcel, watch:popup and watch:background work when run independently, but not when run together with run-p.
"watch": "yarn run clean && yarn run copy-assets && run-p watch:**",
"watch:popup": "parcel watch src/popup.html --public-url='/'",
"watch:background": "parcel watch scripts/background.ts",
The funny thing is that yarn run watch crashes, but npm run watch works fine!
I have a similar issue with parcel,
watch:popupandwatch:backgroundwork when run independently, but not when run together with run-p."watch": "yarn run clean && yarn run copy-assets && run-p watch:**", "watch:popup": "parcel watch src/popup.html --public-url='/'", "watch:background": "parcel watch scripts/background.ts",The funny thing is that
yarn run watchcrashes, butnpm run watchworks fine!
In this scenario we are using npm run
I have a similar issue with parcel,
watch:popupandwatch:backgroundwork when run independently, but not when run together with run-p."watch": "yarn run clean && yarn run copy-assets && run-p watch:**", "watch:popup": "parcel watch src/popup.html --public-url='/'", "watch:background": "parcel watch scripts/background.ts",The funny thing is that
yarn run watchcrashes, butnpm run watchworks fine!
But working fine After using this https://www.npmjs.com/package/concurrently working
@Janaka-Steph checkout https://github.com/ColorlibHQ/AdminLTE/pull/3334
Actually not working in windows 10 only with nodejs 14
issue is still not solved