command-code 0.17.17 → 0.18.0
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 +138 -138
- package/package.json +4 -2
- 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.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Command Code, coding agent that continuously learns your coding taste",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -126,6 +126,8 @@
|
|
|
126
126
|
"test:non-interactive": "vitest run --config tests/non-interactive/vitest.config.ts",
|
|
127
127
|
"test:non-interactive:verbose": "KEEP_OUTPUT=true vitest run --config tests/non-interactive/vitest.config.ts",
|
|
128
128
|
"test:non-interactive:watch": "vitest --config tests/non-interactive/vitest.config.ts",
|
|
129
|
-
"test:e2e": "pnpm test:integration && pnpm test:non-interactive"
|
|
129
|
+
"test:e2e": "pnpm test:integration && pnpm test:non-interactive",
|
|
130
|
+
"benchmark": "tsx benchmarks/runner.ts",
|
|
131
|
+
"benchmark:compare": "tsx benchmarks/compare.ts"
|
|
130
132
|
}
|
|
131
133
|
}
|
|
Binary file
|