-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
ember build --watch exits immediately #1197
Comments
https://github.com/stefanpenner/ember-cli/blob/master/lib/tasks/build-watch.js#L17-L22 return new Watcher({
ui: this.ui,
builder: new Builder({outputPath: options.outputPath}),
analytics: this.analytics,
options: options
}).then(function() {
return new Promise(function() { }); // run until failure, or signal to exit
}); |
Working on a little PR to add that right now! I'm rather new to node development, could you point me in the right direction on what a good way to test this would be? |
very similar test: 2c4d70b |
i must sleep, will provide feedback in the AM. |
ghost
mentioned this issue
Jun 29, 2014
Here you go! |
rwjblue
added a commit
that referenced
this issue
Jun 30, 2014
Close #1197 ember build --watch should run until SIGTERM
jakecraige
pushed a commit
to jakecraige/ember-cli
that referenced
this issue
Jun 30, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running
ember build --watch
, the process exits immediately with an exit code of0
.@rjackson confirmed this on master as of 876be99.
The text was updated successfully, but these errors were encountered: