From 04e5001e42dc701bb02ad79f7392b77dd658ffa6 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Tue, 5 Aug 2025 09:39:08 -0700 Subject: [PATCH] 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. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 2a3a4a45..519463f3 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,10 @@ yarn-error.log* /.pnp .pnp.js +# Package artifacts +*.tgz +*.tar.gz + # Coverage directory /coverage