summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-19 17:37:15 -0400
committerN. Taylor Mullen <[email protected]>2025-04-19 17:59:17 -0400
commit044ccc6dd710c660faf6220409358eff375a099c (patch)
tree284e48db82047c900fc705105e85e18c7de607b5
parentf7edf711906ed8492fc65f3c1cfad1ccd7ede187 (diff)
Enable `npm run debug` from root.
-rw-r--r--package.json1
1 files changed, 1 insertions, 0 deletions
diff --git a/package.json b/package.json
index 0ac89cc4..a75167db 100644
--- a/package.json
+++ b/package.json
@@ -11,6 +11,7 @@
"clean": "npm run clean --workspaces",
"test": "npm run test --workspaces",
"start": "node ./scripts/check-build-status.js && node node_modules/@gemini-code/cli/dist",
+ "debug": "node ./scripts/check-build-status.js && node --inspect-brk node_modules/@gemini-code/cli/dist",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit --jsx react",
"format": "prettier --write .",