chore: Add expand.rs to .gitignore for debugging macros
This commit is contained in:
parent
de45aeb015
commit
aed7e275f2
2 changed files with 6 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -10,3 +10,4 @@ cosign.key
|
|||
# Local testing for bluebuild recipe files
|
||||
/config/*
|
||||
/Containerfile
|
||||
/expand.rs
|
||||
|
|
|
|||
6
justfile
6
justfile
|
|
@ -69,12 +69,16 @@ watch-lint:
|
|||
watch-lint-all-features:
|
||||
cargo watch -c -x 'clippy --all-features'
|
||||
|
||||
expand *args:
|
||||
cargo expand $@ > ./expand.rs
|
||||
echo "Expansion located in ./expand.rs"
|
||||
|
||||
# Installs cargo tools that help with development
|
||||
tools:
|
||||
rustup toolchain install stable
|
||||
rustup override set stable
|
||||
rustup component add --toolchain stable rust-analyzer clippy rustfmt
|
||||
cargo install cargo-watch
|
||||
cargo install cargo-watch cargo-expand
|
||||
|
||||
# Run cargo release and push the tag separately
|
||||
release *args:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue