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:
parent
64f1166a52
commit
e625acbefa
1 changed files with 4 additions and 0 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -13,6 +13,10 @@ yarn-error.log*
|
||||||
/.pnp
|
/.pnp
|
||||||
.pnp.js
|
.pnp.js
|
||||||
|
|
||||||
|
# Package artifacts
|
||||||
|
*.tgz
|
||||||
|
*.tar.gz
|
||||||
|
|
||||||
# Coverage directory
|
# Coverage directory
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue