@vibgrate/cli 1.0.76 → 1.0.78
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/{baseline-ZFMJMB7S.js → baseline-NRKROYVK.js} +2 -2
- package/dist/{chunk-CCU77BBA.js → chunk-DKSPLRJV.js} +1 -1
- package/dist/{chunk-S5HZOJPF.js → chunk-TKNDQ337.js} +5 -0
- package/dist/cli.js +1211 -120
- package/dist/hcs-worker.js +394205 -0
- package/dist/index.js +1 -1
- package/package.json +9 -5
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibgrate/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.78",
|
|
4
4
|
"description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,14 +19,17 @@
|
|
|
19
19
|
"DOCS.md"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsup src/cli.ts src/index.ts --format esm --dts --clean && pnpm test:solutions",
|
|
23
|
-
"build:only": "tsup src/cli.ts src/index.ts --format esm --dts --clean",
|
|
22
|
+
"build": "pnpm run build:hcs && tsup src/cli.ts src/index.ts --format esm --dts --clean && pnpm run bundle:hcs && pnpm test:solutions",
|
|
23
|
+
"build:only": "pnpm run build:hcs && tsup src/cli.ts src/index.ts --format esm --dts --clean && pnpm run bundle:hcs",
|
|
24
|
+
"build:hcs": "pnpm --filter @vibgrate/hcs-node-worker build",
|
|
25
|
+
"bundle:hcs": "cp ../vibgrate-hcs/node/dist/main.js dist/hcs-worker.js",
|
|
24
26
|
"dev": "tsx src/cli.ts",
|
|
25
27
|
"lint": "eslint src",
|
|
26
28
|
"typecheck": "tsc --noEmit",
|
|
27
29
|
"test": "vitest run",
|
|
28
30
|
"test:solutions": "tsx test-solutions/test-runner.ts",
|
|
29
|
-
"test:
|
|
31
|
+
"test:hcs": "tsx test-hcs/test-runner.ts",
|
|
32
|
+
"test:all": "vitest run && pnpm test:solutions && pnpm test:hcs"
|
|
30
33
|
},
|
|
31
34
|
"keywords": [
|
|
32
35
|
"upgrade",
|
|
@@ -46,7 +49,8 @@
|
|
|
46
49
|
"eslint": "^9.0.0",
|
|
47
50
|
"tsup": "^8.0.0",
|
|
48
51
|
"tsx": "^4.0.0",
|
|
49
|
-
"vitest": "^2.0.0"
|
|
52
|
+
"vitest": "^2.0.0",
|
|
53
|
+
"@vibgrate/hcs-node-worker": "workspace:*"
|
|
50
54
|
},
|
|
51
55
|
"dependencies": {
|
|
52
56
|
"chalk": "^5.3.0",
|