command-code 0.11.0 → 0.11.2
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.
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
- package/vsix/commandcode-vscode.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "command-code",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "Command Code, coding agent that continuously learns your coding taste",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"dotenv": "^17.2.1",
|
|
50
50
|
"fast-wrap-ansi": "^0.2.0",
|
|
51
51
|
"figures": "^6.1.0",
|
|
52
|
-
"glob": "^
|
|
52
|
+
"glob": "^13.0.5",
|
|
53
53
|
"gray-matter": "^4.0.3",
|
|
54
54
|
"ignore": "^7.0.5",
|
|
55
55
|
"ink": "^6.3.1",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"unlink:local": "rm -f /usr/local/bin/dmd",
|
|
116
116
|
"typecheck": "tsc --noEmit",
|
|
117
117
|
"start": "node dist/index.mjs",
|
|
118
|
-
"test": "vitest run",
|
|
118
|
+
"test": "vitest run && pnpm test:integration && pnpm test:non-interactive",
|
|
119
119
|
"test:taste": "vitest run tests/taste 2>&1 | tee tests/taste/test-output.log",
|
|
120
120
|
"test:taste:debug": "DEBUG=true vitest run tests/taste 2>&1 | tee tests/taste/test-output-debug.log",
|
|
121
121
|
"test:integration": "vitest run --config tests/integration/vitest.config.ts",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"test:integration:debug": "DEBUG_HANGING=true vitest run --config tests/integration/vitest.config.ts",
|
|
124
124
|
"test:cleanup": "bash scripts/cleanup-test-processes.sh",
|
|
125
125
|
"test:cleanup:dry": "bash scripts/cleanup-test-processes.sh --dry",
|
|
126
|
-
"test:all": "pnpm test
|
|
126
|
+
"test:all": "pnpm test",
|
|
127
127
|
"publish:prod": "pnpm run build:obfuscated && npm publish --access public",
|
|
128
128
|
"test:watch": "vitest",
|
|
129
129
|
"test:coverage": "vitest run --coverage",
|
|
Binary file
|