-
Notifications
You must be signed in to change notification settings - Fork 22
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
Feature request - Allow passing patterns to watch
#80
Comments
Hi @bebraw, thanks for the suggestion! 🙂 It looks like the |
@umbopepato Thanks for the heads up. I opened a feature request at denoland/deno#12197 . I guess another option would be to leverage https://deno.land/x/[email protected] . I wonder if I could do that in user space even. In this case I would have to trigger whatever Deno's |
Awesome, thank you @bebraw! Let's see what they say and sure, if the flag is not going to change we can evaluate a custom implementation. |
It would be good to support patterns for
watch
. I.e.scripts.json
Based on denoland/deno#2401 (comment) Deno supports
deno run --watch=./**/*.ts,./**/*.tsx server.ts
kind of syntax.Looking at the code, the command builder would have to be extended to support strings beyond booleans (
case DenoOptions.watch: {
in code).The text was updated successfully, but these errors were encountered: