From c2df97576a9de62b9b1c42d3af5c6e6ffd3380f0 Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Wed, 22 Jul 2026 14:23:48 +0000 Subject: [PATCH] gitignore: ignore out-of-source WASM build dirs (out-of-tree) npm/build.sh now builds each WASM variant out-of-source in build-wasm- under the repo root (fixed names build-wasm-tcl / build-wasm-notcl). They are disposable (recreated each run) and must not be tracked. Confirmed the relocated build dirs receive all output while the source module dirs stay clean. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e6c84e6d..22b66957 100644 --- a/.gitignore +++ b/.gitignore @@ -61,6 +61,10 @@ magic/magic.js.symbols magic/magic.symbols magic/magic.wasm build-tcl-wasm/ +# Out-of-source WASM build directories created by npm/build.sh (one per variant; +# fixed names build-wasm-). Disposable, recreated each run. +build-wasm-tcl/ +build-wasm-notcl/ net2ir/net2ir net2ir/net2ir.js net2ir/net2ir.wasm