git-coco 0.49.0 → 0.50.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/README.md +3 -2
- package/dist/index.d.ts +75 -1
- package/dist/index.esm.mjs +7196 -2382
- package/dist/index.js +7297 -2489
- package/dist/tree-sitter/tree-sitter-tsx.wasm +0 -0
- package/dist/tree-sitter/tree-sitter-typescript.wasm +0 -0
- package/dist/tree-sitter/web-tree-sitter.wasm +0 -0
- package/package.json +9 -4
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-coco",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"description": "zero-effort git commits with coco.",
|
|
5
5
|
"author": "gfargo <ghfargo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"dev": "tsx watch src/index.ts",
|
|
31
31
|
"prebuild": "npm run build:schema && npm run build:info",
|
|
32
32
|
"build": "rollup -c",
|
|
33
|
+
"postbuild": "node bin/copyTreeSitterWasm.mjs",
|
|
33
34
|
"build:schema": "tsx bin/generateSchema.ts",
|
|
34
35
|
"build:info": "tsx bin/generateBuildInfo.ts",
|
|
35
36
|
"build:watch": "rollup -c -w",
|
|
@@ -41,9 +42,10 @@
|
|
|
41
42
|
"test:cli": "tsx bin/smokeCli.ts",
|
|
42
43
|
"bench": "tsx bin/benchmark.ts",
|
|
43
44
|
"scenario": "tsx bin/scenario.ts",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"test:jest
|
|
45
|
+
"eval:structural-extract": "tsx bin/structuralExtractEval.ts",
|
|
46
|
+
"pretest:jest": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
47
|
+
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
48
|
+
"test:jest:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
47
49
|
"release": "release-it",
|
|
48
50
|
"release:dry-run": "release-it --ci --dry-run --no-git --no-github.release --no-github.publish --no-npm.publish",
|
|
49
51
|
"wiki:clone": "tsx bin/wiki.ts clone",
|
|
@@ -71,6 +73,7 @@
|
|
|
71
73
|
"@types/yargs": "^17.0.33",
|
|
72
74
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
73
75
|
"@typescript-eslint/parser": "^7.13.1",
|
|
76
|
+
"cross-env": "^10.1.0",
|
|
74
77
|
"eslint": "^8.54.0",
|
|
75
78
|
"ink-testing-library": "4.0.0",
|
|
76
79
|
"jest": "^30.0.5",
|
|
@@ -82,6 +85,7 @@
|
|
|
82
85
|
"rollup-plugin-preserve-shebangs": "^0.2.0",
|
|
83
86
|
"rollup-plugin-typescript2": "^0.37.0",
|
|
84
87
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
88
|
+
"tree-sitter-typescript": "^0.23.2",
|
|
85
89
|
"ts-jest": "^29.1.0",
|
|
86
90
|
"ts-json-schema-generator": "^2.9.0",
|
|
87
91
|
"ts-node": "^10.9.1",
|
|
@@ -110,6 +114,7 @@
|
|
|
110
114
|
"react-devtools-core": "7.0.1",
|
|
111
115
|
"simple-git": "3.36.0",
|
|
112
116
|
"tiktoken": "^1.0.21",
|
|
117
|
+
"web-tree-sitter": "^0.26.8",
|
|
113
118
|
"yargs": "17.7.2"
|
|
114
119
|
},
|
|
115
120
|
"resolutions": {
|