chore: Add expand.rs to .gitignore for debugging macros

This commit is contained in:
Gerald Pinder 2024-09-21 10:46:17 -04:00
parent de45aeb015
commit aed7e275f2
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -10,3 +10,4 @@ cosign.key
# Local testing for bluebuild recipe files
/config/*
/Containerfile
/expand.rs

View file

@ -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: