From 43c407e425b430d2c51c21592a5fc54aa073fb2d Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Wed, 9 Oct 2024 13:00:41 +1300 Subject: [PATCH] chore: ignore `node_modules` in git (#1308) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I think it's best to have this explicitly ignored since some of our fixtures are valid with npm/yarn/pnpm and `node_modules` is known for being a blackhole 😅 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 538c7fd9b7..7d9ef27890 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ *.tar *.pprof .go-version +node_modules