git-coco 0.62.4 → 0.63.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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.mjs +1164 -134
- package/dist/index.js +1164 -134
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-coco",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.63.0",
|
|
4
4
|
"description": "zero-effort git commits with coco.",
|
|
5
5
|
"author": "gfargo <ghfargo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"build:info": "tsx bin/generateBuildInfo.ts",
|
|
37
37
|
"build:watch": "rollup -c -w",
|
|
38
38
|
"clean": "npx rimraf dist && npx rimraf coverage",
|
|
39
|
-
"lint": "eslint src",
|
|
39
|
+
"lint": "eslint src bin",
|
|
40
40
|
"lint:fix": "eslint --fix src",
|
|
41
41
|
"test": "npm run test:jest && npm run test:publish",
|
|
42
42
|
"test:publish": "npm run lint && npm run build && npm run test:cli && npm pack --dry-run",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"scenario": "tsx bin/scenarioRunner.ts",
|
|
46
46
|
"screenshot": "tsx bin/screenshot.ts",
|
|
47
47
|
"screenshot:sync": "tsx bin/syncScreenshots.ts",
|
|
48
|
+
"screenshot:sync:all": "tsx bin/syncScreenshots.ts",
|
|
48
49
|
"eval:structural-extract": "tsx bin/structuralExtractEval.ts",
|
|
49
50
|
"pretest:jest": "npm run build:info && node bin/copyTreeSitterWasm.mjs",
|
|
50
51
|
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|