@chatbi-v/cli 3.1.2 → 3.1.4
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.js +3 -2
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -27,7 +27,7 @@ var init_package = __esm({
|
|
|
27
27
|
"package.json"() {
|
|
28
28
|
package_default = {
|
|
29
29
|
name: "@chatbi-v/cli",
|
|
30
|
-
version: "3.1.
|
|
30
|
+
version: "3.1.4",
|
|
31
31
|
description: "Standardized CLI tooling for ChatBI Monorepo",
|
|
32
32
|
type: "module",
|
|
33
33
|
main: "dist/index.js",
|
|
@@ -56,7 +56,8 @@ var init_package = __esm({
|
|
|
56
56
|
dev: "tsup --watch",
|
|
57
57
|
test: "vitest run tests/**/*.test.ts --exclude tests/e2e/**",
|
|
58
58
|
"test:e2e": "pnpm build && vitest run tests/e2e/plugin-create.e2e.test.ts tests/e2e/sandbox-isolation.e2e.test.ts",
|
|
59
|
-
"test:all": "pnpm test && pnpm test:e2e"
|
|
59
|
+
"test:all": "pnpm test && pnpm test:e2e",
|
|
60
|
+
prepublishOnly: "pnpm build"
|
|
60
61
|
},
|
|
61
62
|
dependencies: {
|
|
62
63
|
"@chatbi-v/config": "workspace:*",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatbi-v/cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "Standardized CLI tooling for ChatBI Monorepo",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,16 +24,7 @@
|
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsup",
|
|
29
|
-
"dev": "tsup --watch",
|
|
30
|
-
"test": "vitest run tests/**/*.test.ts --exclude tests/e2e/**",
|
|
31
|
-
"test:e2e": "pnpm build && vitest run tests/e2e/plugin-create.e2e.test.ts tests/e2e/sandbox-isolation.e2e.test.ts",
|
|
32
|
-
"test:all": "pnpm test && pnpm test:e2e"
|
|
33
|
-
},
|
|
34
27
|
"dependencies": {
|
|
35
|
-
"@chatbi-v/config": "workspace:*",
|
|
36
|
-
"@chatbi-v/core": "workspace:*",
|
|
37
28
|
"boxen": "^8.0.1",
|
|
38
29
|
"cac": "^6.7.14",
|
|
39
30
|
"esbuild": "^0.24.0",
|
|
@@ -47,7 +38,9 @@
|
|
|
47
38
|
"picocolors": "^1.0.0",
|
|
48
39
|
"prompts": "^2.4.2",
|
|
49
40
|
"vite": "^5.4.11",
|
|
50
|
-
"zod": "^3.23.8"
|
|
41
|
+
"zod": "^3.23.8",
|
|
42
|
+
"@chatbi-v/config": "3.1.4",
|
|
43
|
+
"@chatbi-v/core": "3.1.4"
|
|
51
44
|
},
|
|
52
45
|
"devDependencies": {
|
|
53
46
|
"@types/boxen": "^3.0.5",
|
|
@@ -63,5 +56,12 @@
|
|
|
63
56
|
"tsup": "^8.5.1",
|
|
64
57
|
"typescript": "^5.0.0",
|
|
65
58
|
"vitest": "^1.3.1"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"dev": "tsup --watch",
|
|
63
|
+
"test": "vitest run tests/**/*.test.ts --exclude tests/e2e/**",
|
|
64
|
+
"test:e2e": "pnpm build && vitest run tests/e2e/plugin-create.e2e.test.ts tests/e2e/sandbox-isolation.e2e.test.ts",
|
|
65
|
+
"test:all": "pnpm test && pnpm test:e2e"
|
|
66
66
|
}
|
|
67
|
-
}
|
|
67
|
+
}
|