-
Notifications
You must be signed in to change notification settings - Fork 15
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
Watch files for changes #1
Comments
Is this dropped or has it been implemented? |
I dropped this feature, as it seemed unnecessary for my use cases. For node, we have nodemon, webpack dev server/middleware; auto-reload out of the box for django, php or literally any CGI app. It shouldn't be difficult to implement, tho. |
Thanks! |
Reopening this feature, because there might be a good use for it considering the current development in the "next" branch. |
I'm using watchman for re-run Unfortunately it looks like
|
We need some function that would watch for file changes and run tasks when it detects changes.
Function should be called
runner_watch
.Possible implementations:
sha1
,sha256
,md5
,md5sum
, etc...) and run through all the files withsleep 1
(not the best way)inotifywait
(requires a dependencyinotify-tools
, can be optional, best method)The text was updated successfully, but these errors were encountered: