Open mikaelbr opened 7 years ago
I also experience this using nodemon, just for the records.
"dependencies": {
"node-notifier-cli": "1.1.2",
"nodemon": "1.17.1"
},
"scripts": {
"works": "npm run notify",
"broken": "nodemon --exec \"npm run notify\"",
"notify": "notify -t \"Some Title\" -m \"Some Message\" || echo 'failed'"
}
}
https://github.com/mikaelbr/node-notifier/issues/109
From original Issue:
I've been able to get multiple people on multiple operating systems (OSX and Windows) to reproduce some unexpected behavior with the following package:
For some reason when
notify
is called behind something run withparallelshell
it will just hang. I'd love to try and figure out how I can get this unstuck but I'm not sure if it is a problem withparallelshell
ornode-notifier
. :( Any ideas?I've also opened an issue on
parallelshel
here: keithamus/parallelshell#52