From 924c2b4425b6683b505c72515134cb71d7fc1a8a Mon Sep 17 00:00:00 2001 From: ObserverOfTime Date: Sat, 2 Mar 2024 18:55:39 +0200 Subject: [PATCH] chore(bindings): ignore more artifacts --- cli/src/generate/templates/gitignore | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/cli/src/generate/templates/gitignore b/cli/src/generate/templates/gitignore index c1ab2b25..70bef74b 100644 --- a/cli/src/generate/templates/gitignore +++ b/cli/src/generate/templates/gitignore @@ -1,23 +1,25 @@ # Rust artifacts -/Cargo.lock -/target/ +Cargo.lock +target/ # Node artifacts -/build/ -/node_modules/ +build/ +node_modules/ +*.tgz # Swift artifacts -/.build/ +.build/ + +# Go artifacts +go.sum +_obj/ # Python artifacts -/dist/ +.venv/ +dist/ *.egg-info *.whl -# Zig artifacts -/zig-cache/ -/zig-out/ - # C artifacts *.a *.so