Skip to content

Commit be378d8

Browse files
committed
chore: replace bacon with watchexec
1 parent c913333 commit be378d8

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

bacon.toml

Lines changed: 0 additions & 4 deletions
This file was deleted.

justfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ alias r := ready
1010
# or install via `cargo install cargo-binstall`
1111
# Initialize the project by installing all the necessary tools.
1212
init:
13-
cargo binstall bacon typos-cli taplo-cli cargo-llvm-cov -y
13+
cargo binstall watchexec-cli typos-cli taplo-cli cargo-llvm-cov -y
1414

1515
install:
1616
pnpm install
@@ -26,12 +26,15 @@ ready:
2626
just lint
2727
git status
2828

29-
watch:
30-
bacon
29+
watch *args='':
30+
watchexec {{args}}
31+
32+
watch-check:
33+
just watch "'cargo check; cargo clippy'"
3134

3235
# Run the example in `parser`, `formatter`, `linter`
3336
example *args='':
34-
bacon example -- {{args}}
37+
cargo run --example resolver -- {{args}}
3538

3639
# Format all files
3740
fmt:

0 commit comments

Comments
 (0)