command-code 0.10.11 → 0.10.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -2
  2. package/package.json +11 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "command-code",
3
- "version": "0.10.11",
3
+ "version": "0.10.12",
4
4
  "description": "Command Code, coding agent that continuously learns your coding taste",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -81,6 +81,7 @@
81
81
  "@types/react": "^19.0.3",
82
82
  "@types/semver": "^7.7.1",
83
83
  "@types/shell-quote": "^1.7.5",
84
+ "execa": "^9.6.1",
84
85
  "ink-testing-library": "^4.0.0",
85
86
  "javascript-obfuscator": "^4.1.1",
86
87
  "pkg": "^5.8.1",
@@ -116,9 +117,16 @@
116
117
  "test:taste:debug": "DEBUG=true vitest run tests/taste 2>&1 | tee tests/taste/test-output-debug.log",
117
118
  "test:integration": "vitest run --config tests/integration/vitest.config.ts",
118
119
  "test:integration:verbose": "VERBOSE=true KEEP_OUTPUT=true vitest run --config tests/integration/vitest.config.ts",
119
- "test:all": "pnpm test && pnpm test:integration",
120
+ "test:integration:debug": "DEBUG_HANGING=true vitest run --config tests/integration/vitest.config.ts",
121
+ "test:cleanup": "bash scripts/cleanup-test-processes.sh",
122
+ "test:cleanup:dry": "bash scripts/cleanup-test-processes.sh --dry",
123
+ "test:all": "pnpm test && pnpm test:integration && pnpm test:non-interactive",
120
124
  "publish:prod": "pnpm run build:obfuscated && npm publish --access public",
121
125
  "test:watch": "vitest",
122
- "test:coverage": "vitest run --coverage"
126
+ "test:coverage": "vitest run --coverage",
127
+ "test:non-interactive": "vitest run --config tests/non-interactive/vitest.config.ts",
128
+ "test:non-interactive:verbose": "KEEP_OUTPUT=true vitest run --config tests/non-interactive/vitest.config.ts",
129
+ "test:non-interactive:watch": "vitest --config tests/non-interactive/vitest.config.ts",
130
+ "test:e2e": "pnpm test:integration && pnpm test:non-interactive"
123
131
  }
124
132
  }