chore(gitignore): ignore npm package artifacts

Add *.tgz and *.tar.gz to gitignore to prevent npm pack artifacts from being committed. These generated files should not be tracked in version control.
This commit is contained in:
David Snelling 2025-08-05 09:39:08 -07:00
parent b38742e86c
commit 04e5001e42

4
.gitignore vendored
View file

@ -13,6 +13,10 @@ yarn-error.log*
/.pnp
.pnp.js
# Package artifacts
*.tgz
*.tar.gz
# Coverage directory
/coverage