From b2b4512972ce8a49c1355d2a8cc36e53079addf1 Mon Sep 17 00:00:00 2001 From: Julian Noble Date: Sat, 4 Jul 2026 04:07:22 +1000 Subject: [PATCH] .gitignore and .fossil-settings to ignore node json files and node_modules folder. node_modules is primarily for local ai here, and can contain binaries - which we don't want --- .fossil-settings/ignore-glob | 5 +++++ .gitignore | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob index 5f768e93..f12e4929 100644 --- a/.fossil-settings/ignore-glob +++ b/.fossil-settings/ignore-glob @@ -64,3 +64,8 @@ build-* docgen_tmp ~ + +#Node +node_modules +package-lock.json +package.json diff --git a/.gitignore b/.gitignore index dd03c735..5665e616 100644 --- a/.gitignore +++ b/.gitignore @@ -80,3 +80,8 @@ zig-out/ /docgen_tmp/ /~/ + +#Node +/node_modules/ +/package-lock.json +/package.json