-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don'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
The text was updated successfully, but these errors were encountered: