Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upDon't work with concurrently and nodemon #218
Comments
|
Can you please create a minimal repository with code + install + steps to reproduce the error so that we can see it too? Thanks! |
|
I think there is an issue with concurrently. Works fine with nodemon for me when I run the first script. In the second script dashboard never shows up.
|
|
As already discovered in #214 (shelljs) and #217 (nodemon), some libraries are incompatible with Can you apply a change like I've done in #217 (comment) to remove webpack-dashboard completely and just run the simplest blessed sample to see if the issue is still there? It would likely be something like: "server": "nodemon node_modules/blessed/example/simple-form.js",
"server-prod": "cross-env NODE_ENV=production nodemon node_modules/blessed/example/simple-form.js", |
|
I ran into the same issue with concurrently, however, adding --raw param to concurrently did a trick for me.
|
|
Closing in lieu of #223 |
|
added -- --watch instead of just --watch fixed it for me. |


I can't make it work with webpack --watch and concurrently