I\'m on a Mac running El Capitan. I have node v5.6.0 and npm v3.6.0. When I try to run nodemon, I get:
-bash: nodemon: command not found
I th
Put --exec arg in single quotation.
--exec
single quotation
e.g. I changed "nodemon --exec yarn build-langs" to "nodemon --exec 'yarn build-langs'" and worked.
"nodemon --exec yarn build-langs"
"nodemon --exec 'yarn build-langs'"