modd
modd copied to clipboard
A flexible developer tool that runs processes and responds to filesystem changes
If `./foo` doesn't exist and `modd` is executed with: ``` foo/* { prep +onchange: echo @mods } ``` Then after `mkdir foo && echo foo > foo/foo.txt` (plus any amount...
Unlike FSEvents (OSX) and ReadDirectoryChangesW (Windows), inotify is not recursive. The rjeczalik/notify package half-hides this from us by walking the tree on startup and adding a watch for every directory....
Hi. It doesn't look like we can use `@variables` in file watch patterns. I have this `make` recipe that I would like to convert into a `modd` block: ``` $(build_js):...
I want to handle notifications in a way that's very specific to my environment. Suggested implementation: Add command line flag to specify external program to run on command error. The...
How can I use it under Windows system? How should modd.conf be configured?
I have a project where at the top of the project I store my postgresql data directory, which is owned by a container and not accessible by my own user....
I can see that this repo is not being maintained, but I'll leave it here nonetheless, in case someone takes over in a fork, or the owner returns. On Windows...
`modd.conf` ``` tailwind.config.js { daemon: tailwind --watch --output ./build/tailwind.css } ``` Output of running `modd` ``` 11:16:21: daemon: tailwind --watch --output ./build/tailwind.css Rebuilding... exited: exit status 0 >> restart backoff......
Currently on an i7 with Mac OS 12.6 installed and getting this error when attempting to install modd with brew for the first time ``` Running brew update --auto-update... ==>...
I have a go-based application that needs to save internal data. The application handles signals and stops itself correctly when modd detects a change. When I stop modd, I would...