Yet another fancy watcher. (Inspired by antr / entr)
Configure execution of different commands using semantic YAML.
```yaml
name: run my tests run: make test change: "tests/" ignore: "tests/integration/"
name: run linters run: ["npm run lint", "npm run tsc"] change: ["src/static/*", "src/assets/"]
name: Starwars run: telnet towel.blinkenlights.nl change: ".watch.yaml"
name: say hello run: echo "hello on init" change: ".watch.yaml" runoninit: true ```
Create a lightweight watcher to run my tests every time something in my project change. So I won't forget to keep my tests passing. Funzzy was made with Rust that is why it consumes almost nothing to run.
bash
brew tap cristianoliveira/tap
brew update
brew install funzzy
bash
curl -s https://raw.githubusercontent.com/cristianoliveira/funzzy/master/linux-install.sh | sh
bash
cargo install funzzy
*Make sure you have $HOME/.cargo/bin
in your PATH
export $PATH:$HOME/.cargo/bin
Make sure you have installed the follow dependencies:
Clone this repo and do:
bash
make install
Initializing with boilerplate:
bash
funzzy init
Change the YAML as you want. Then run:
bash
funzzy
Filtering task by target:
bash
funzzy --target="my task"
Run with some arbitrary command and stdin
bash
find . -R '**.rs' | funzzy 'cargo build'
Run some arbitrary command in an interval of seconds
bash
funzzy run 'cargo build' 10
See more on examples or in the integration specs
Running unit tests:
bash
cargo test
or simple make tests
Running integration tests:
make integration
We use clippy for lintting the funzzy's source code. Make sure you had validated it before commit.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
Pull Requests are really welcome! Others support also.
Pull Request should have unit tests
This project was made under MIT License.