Skip to content

Commit

Permalink
build(Justfile): re-simplify the Justfile
Browse files Browse the repository at this point in the history
More complex piping to `bat` can be easily changed locally when needed.
  • Loading branch information
lukehsiao committed Oct 14, 2024
1 parent 6fba53e commit f2b2b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test:

# Sets up a watcher that lints, tests, and builds
watch:
cargo watch -c -s 'cargo clippy --color=always --all-targets --all-features -- -W clippy::pedantic -D warnings 2>&1 | bat -p' -s 'cargo --color=always nextest run 2>&1 | bat -p' -s 'cargo --color=always build --release 2>&1 | bat -p'
cargo watch -c -x 'clippy --all-targets --all-features -- -W clippy::pedantic -D warnings' -x 'nextest run' -x 'build --release'

# Update the changelog using git-cliff
_update_changelog version:
Expand Down

0 comments on commit f2b2b6f

Please sign in to comment.