From f9b457e062db7d19088ff354d3aa96ea502e4ff5 Mon Sep 17 00:00:00 2001 From: nams1570 Date: Fri, 3 Jul 2026 10:07:05 -0700 Subject: [PATCH] feat: expose gc on bs start this should allow gc() calls to clean up --- apps/bulldozer-js/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/bulldozer-js/package.json b/apps/bulldozer-js/package.json index da773e238..39c9242c8 100644 --- a/apps/bulldozer-js/package.json +++ b/apps/bulldozer-js/package.json @@ -5,8 +5,8 @@ "private": true, "type": "module", "scripts": { - "start": "tsx src/index.ts", - "dev": "tsx watch --clear-screen=false src/index.ts", + "start": "tsx --expose-gc src/index.ts", + "dev": "tsx watch --clear-screen=false --expose-gc src/index.ts", "run-bulldozer-studio": "tsx watch --clear-screen=false scripts/run-bulldozer-studio.ts", "profile:performance": "tsx scripts/profile-bulldozer-performance.ts", "test": "vitest run",