From 09fabe3021fdfecf821e85e2a09cc29f0aced69a Mon Sep 17 00:00:00 2001 From: Seth Troisi Date: Thu, 24 Apr 2025 00:55:17 +0000 Subject: [PATCH] Remove `--workspace` npm run debug command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e692a96..1aee9c27 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ To debug the CLI application using VS Code: 1. Start the CLI in debug mode from the root directory: ```bash - npm run debug --workspace=gemini-code-cli + npm run debug ``` This command runs `node --inspect-brk dist/gemini.js` within the `packages/cli` directory, pausing execution until a debugger attaches. 2. In VS Code, use the "Attach" launch configuration (found in `.vscode/launch.json`). This configuration is set up to attach to the Node.js process listening on port 9229, which is the default port used by `--inspect-brk`.