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
I'm not sure exiting is desirable in this case. If you have a linter for example running in watch mode it makes sense that it'll fail during the course of development, but that shouldn't bring everything else down.
In our repo @OliverJAsh an example of this'd be app#gen-js, which can fail if you save with broken JSON syntax. In this sense turbo watch is kind of self-healing.
If I understand correctly, when a persistent task exits, it will never run again, even if inputs change for example. So in this case I'm not sure it is self-healing.
In our repo @OliverJAsh an example of this'd be app#gen-js, which can fail if you save with broken JSON syntax. In this sense turbo watch is kind of self-healing.
I might be misunderstanding but our app#gen-js is not persistent.
If you have a linter for example running in watch mode it makes sense that it'll fail during the course of development, but that shouldn't bring everything else down.
Assuming you mean using the linter's built-in watch mode, in which case a non-zero exit would indicate something more severe than a lint error. Lint errors alone wouldn't cause the linter's watch mode to exit.
(Otherwise, if it's not using the linter's built-in watch mode, it wouldn't be configured as a persistent task.)
Verify canary release
Link to code that reproduces this issue
https://github.com/OliverJAsh/turbo-watch-persistent-exit
Which canary version will you have in your reproduction?
2.4.5-canary.2
Environment information
Expected behavior
When watching a persistent task, if the task exits with a non-zero exit code,
watch
should also exit (likerun
does).Actual behavior
watch
does not exit.To Reproduce
package.json
:turbo.json
:Then run:
$ pnpm exec turbo watch server
Additional context
No response
The text was updated successfully, but these errors were encountered: