Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ client/test-results/
client/e2e/test-results/
mcp.json
.claude/settings.local.json
*.log
mcp-logs/
client/coverage/
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
registry="https://registry.npmjs.org/"
@modelcontextprotocol:registry="https://registry.npmjs.org/"
package-lock=true
save=true
10 changes: 9 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@ server/build
CODE_OF_CONDUCT.md
SECURITY.md
mcp.json
.claude/settings.local.json
.claude/settings.local.json

# Logs and transient data
mcp-logs/
*.log
server/*.log
server/*.yaml
server/mcp-logs/
react-resizable-panels-src/jest-source/
2 changes: 1 addition & 1 deletion cli/__tests__/helpers/cli-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function runCli(
const child = spawn("node", [CLI_PATH, ...args], {
stdio: ["pipe", "pipe", "pipe"],
cwd: options.cwd,
env: { ...process.env, ...options.env },
env: { DEBUG: "true", ...process.env, ...options.env },
signal: options.signal,
// Kill child process tree on exit
detached: false,
Expand Down
Loading