You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I'm new to supervisor and had to investigate a crashing child issue and my bad if it already been discussed.
My original command inside package.json was "start": "supervisor -- server.js --i data/"
I had to change it due to line 69 which breaks the loop and then ignore the following ignore parameter
After changing to "start": "supervisor -i data/ -- server.js" everything works fine and the data folder is ignored.
My question is, why do you have to break the loop at this place, and not finish reading the rest of the command?
Regards
The text was updated successfully, but these errors were encountered:
running-coder
changed the title
[Question] Regarding the args order when declaring the start method
[Question] Regarding the args order when declaring the start command
May 5, 2016
Hey, I'm new to supervisor and had to investigate a
crashing child
issue and my bad if it already been discussed.My original command inside
package.json
was"start": "supervisor -- server.js --i data/"
I had to change it due to line 69 which breaks the loop and then ignore the following ignore parameter
After changing to
"start": "supervisor -i data/ -- server.js"
everything works fine and the data folder is ignored.My question is, why do you have to break the loop at this place, and not finish reading the rest of the command?
Regards
The text was updated successfully, but these errors were encountered: