@sudocode-ai/claude-code-acp 0.12.7 → 0.12.8
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/package.json +5 -4
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.12.
|
|
6
|
+
"version": "0.12.8",
|
|
7
7
|
"description": "An ACP-compatible coding agent powered by the Claude Code SDK (TypeScript)",
|
|
8
8
|
"main": "dist/lib.js",
|
|
9
9
|
"bin": {
|
|
@@ -30,10 +30,11 @@
|
|
|
30
30
|
"test:run": "vitest run",
|
|
31
31
|
"test:coverage": "vitest run --coverage",
|
|
32
32
|
"prepublishOnly": "npm run build",
|
|
33
|
+
"preversion": "npm run test:run && npm run build",
|
|
33
34
|
"release": "./scripts/release.sh",
|
|
34
|
-
"publish:patch": "npm version patch && npm publish",
|
|
35
|
-
"publish:minor": "npm version minor && npm publish",
|
|
36
|
-
"publish:major": "npm version major && npm publish"
|
|
35
|
+
"publish:patch": "npm run test:run && npm run build && npm version patch && npm publish",
|
|
36
|
+
"publish:minor": "npm run test:run && npm run build && npm version minor && npm publish",
|
|
37
|
+
"publish:major": "npm run test:run && npm run build && npm version major && npm publish"
|
|
37
38
|
},
|
|
38
39
|
"keywords": [
|
|
39
40
|
"claude",
|