git-coco 0.55.0 → 0.56.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.d.ts +62 -12
- package/dist/index.esm.mjs +4131 -178
- package/dist/index.js +4130 -176
- package/package.json +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-coco",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.56.0",
|
|
4
4
|
"description": "zero-effort git commits with coco.",
|
|
5
5
|
"author": "gfargo <ghfargo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"start": "npm run dev",
|
|
30
30
|
"dev": "tsx watch src/index.ts",
|
|
31
|
+
"dev:tui": "tsx src/index.ts",
|
|
31
32
|
"prebuild": "npm run build:schema && npm run build:info",
|
|
32
33
|
"build": "rollup -c",
|
|
33
34
|
"postbuild": "node bin/copyTreeSitterWasm.mjs",
|
|
@@ -42,10 +43,17 @@
|
|
|
42
43
|
"test:cli": "tsx bin/smokeCli.ts",
|
|
43
44
|
"bench": "tsx bin/benchmark.ts",
|
|
44
45
|
"scenario": "tsx bin/scenarioRunner.ts",
|
|
46
|
+
"screenshot": "tsx bin/screenshot.ts",
|
|
45
47
|
"eval:structural-extract": "tsx bin/structuralExtractEval.ts",
|
|
46
48
|
"pretest:jest": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
47
49
|
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
48
50
|
"test:jest:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
51
|
+
"pretest:unit": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
52
|
+
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=/node_modules/ --testPathIgnorePatterns=integration",
|
|
53
|
+
"pretest:integration": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
54
|
+
"test:integration": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathPatterns=integration",
|
|
55
|
+
"pretest:coverage": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
56
|
+
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
|
|
49
57
|
"release": "release-it",
|
|
50
58
|
"release:dry-run": "release-it --ci --dry-run --no-git --no-github.release --no-github.publish --no-npm.publish",
|
|
51
59
|
"wiki:clone": "tsx bin/wiki.ts clone",
|