@icebreakers/monorepo 2.2.0 → 3.0.1
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/assets/.github/ISSUE_TEMPLATE/bug_report.yml +1 -1
- package/assets/.github/workflows/ci.yml +1 -1
- package/assets/.github/workflows/release.yml +1 -1
- package/assets/package.json +7 -7
- package/bin/monorepo.js +2 -0
- package/dist/cli.cjs +55 -1551
- package/dist/cli.d.cts +1 -2
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +62 -0
- package/dist/index.cjs +43 -1583
- package/dist/index.d.cts +320 -301
- package/dist/index.d.mts +509 -0
- package/dist/index.mjs +3 -0
- package/dist/upgrade-C7eRZs41.cjs +1523 -0
- package/dist/upgrade-CHym1gi7.mjs +1315 -0
- package/package.json +41 -20
- package/templates/apps/client/package.json +10 -10
- package/templates/apps/server/package.json +2 -2
- package/templates/packages/vue-lib-template/package.json +4 -4
- package/bin/copy.js +0 -2
- package/dist/chunk-Y4HUH2J5.js +0 -1534
- package/dist/cli.d.ts +0 -2
- package/dist/cli.js +0 -76
- package/dist/index.d.ts +0 -490
- package/dist/index.js +0 -70
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icebreakers/monorepo",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"description": "The icebreaker's monorepo manager",
|
|
6
6
|
"author": "ice breaker <1324318532@qq.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -21,28 +21,52 @@
|
|
|
21
21
|
"sideEffects": false,
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/index.d.
|
|
25
|
-
"import":
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
"types": "./dist/index.d.mts",
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/index.d.mts",
|
|
27
|
+
"default": "./dist/index.mjs"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/index.d.cts",
|
|
31
|
+
"default": "./dist/index.cjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"./cli": {
|
|
35
|
+
"types": "./dist/cli.d.mts",
|
|
36
|
+
"import": {
|
|
37
|
+
"types": "./dist/cli.d.mts",
|
|
38
|
+
"default": "./dist/cli.mjs"
|
|
39
|
+
},
|
|
40
|
+
"require": {
|
|
41
|
+
"types": "./dist/cli.d.cts",
|
|
42
|
+
"default": "./dist/cli.cjs"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"./package.json": "./package.json"
|
|
28
46
|
},
|
|
29
|
-
"
|
|
47
|
+
"main": "./dist/index.cjs",
|
|
48
|
+
"module": "./dist/index.mjs",
|
|
49
|
+
"types": "./dist/index.d.mts",
|
|
50
|
+
"bin": "bin/monorepo.js",
|
|
30
51
|
"files": [
|
|
31
52
|
"assets",
|
|
32
53
|
"bin",
|
|
33
54
|
"dist",
|
|
34
55
|
"templates"
|
|
35
56
|
],
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
59
|
+
},
|
|
36
60
|
"dependencies": {
|
|
37
|
-
"@inquirer/checkbox": "^
|
|
38
|
-
"@inquirer/input": "^
|
|
39
|
-
"@inquirer/select": "^
|
|
61
|
+
"@inquirer/checkbox": "^5.0.1",
|
|
62
|
+
"@inquirer/input": "^5.0.1",
|
|
63
|
+
"@inquirer/select": "^5.0.1",
|
|
40
64
|
"@pnpm/find-workspace-dir": "^1000.1.3",
|
|
41
65
|
"@pnpm/logger": "^1001.0.1",
|
|
42
|
-
"@pnpm/types": "^1001.0.
|
|
43
|
-
"@pnpm/worker": "^1000.3.
|
|
44
|
-
"@pnpm/workspace.find-packages": "^1000.0.
|
|
45
|
-
"@pnpm/workspace.read-manifest": "^1000.2.
|
|
66
|
+
"@pnpm/types": "^1001.0.1",
|
|
67
|
+
"@pnpm/worker": "^1000.3.3",
|
|
68
|
+
"@pnpm/workspace.find-packages": "^1000.0.46",
|
|
69
|
+
"@pnpm/workspace.read-manifest": "^1000.2.7",
|
|
46
70
|
"c12": "^3.3.2",
|
|
47
71
|
"commander": "^14.0.2",
|
|
48
72
|
"comment-json": "^4.4.1",
|
|
@@ -51,7 +75,7 @@
|
|
|
51
75
|
"fs-extra": "^11.3.2",
|
|
52
76
|
"git-url-parse": "^16.1.0",
|
|
53
77
|
"klaw": "^4.1.0",
|
|
54
|
-
"p-queue": "^9.0.
|
|
78
|
+
"p-queue": "^9.0.1",
|
|
55
79
|
"pathe": "^2.0.3",
|
|
56
80
|
"picocolors": "^1.1.1",
|
|
57
81
|
"semver": "^7.7.3",
|
|
@@ -68,16 +92,13 @@
|
|
|
68
92
|
"set-value": "^4.1.0"
|
|
69
93
|
},
|
|
70
94
|
"scripts": {
|
|
71
|
-
"dev": "
|
|
72
|
-
"build": "
|
|
95
|
+
"dev": "tsdown --watch --sourcemap",
|
|
96
|
+
"build": "tsdown",
|
|
73
97
|
"test": "vitest run",
|
|
74
98
|
"test:dev": "vitest",
|
|
75
99
|
"release": "pnpm publish",
|
|
76
100
|
"lint": "eslint .",
|
|
77
101
|
"lint:fix": "eslint . --fix",
|
|
78
102
|
"prepublish": "tsx scripts/prepublish.ts"
|
|
79
|
-
}
|
|
80
|
-
"main": "./dist/index.cjs",
|
|
81
|
-
"module": "./dist/index.js",
|
|
82
|
-
"types": "./dist/index.d.ts"
|
|
103
|
+
}
|
|
83
104
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@faker-js/faker": "^10.1.0",
|
|
18
|
-
"@tanstack/vue-query": "^5.91.
|
|
18
|
+
"@tanstack/vue-query": "^5.91.2",
|
|
19
19
|
"@tanstack/vue-table": "^8.21.3",
|
|
20
20
|
"@tanstack/vue-virtual": "^3.13.12",
|
|
21
21
|
"@trpc/client": "^11.7.1",
|
|
@@ -25,23 +25,23 @@
|
|
|
25
25
|
"vue-router": "^4.6.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@cloudflare/vite-plugin": "^1.
|
|
28
|
+
"@cloudflare/vite-plugin": "^1.15.2",
|
|
29
29
|
"@hono/node-server": "^1.19.6",
|
|
30
30
|
"@hono/trpc-server": "^0.4.0",
|
|
31
31
|
"@tailwindcss/vite": "^4.1.17",
|
|
32
32
|
"@trpc/server": "^11.7.1",
|
|
33
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
34
|
-
"@vitejs/plugin-vue-jsx": "^5.1.
|
|
33
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
34
|
+
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
|
35
35
|
"@vue/tsconfig": "^0.8.1",
|
|
36
|
-
"hono": "^4.10.
|
|
36
|
+
"hono": "^4.10.6",
|
|
37
37
|
"tailwindcss": "^4.1.17",
|
|
38
38
|
"typescript": "~5.9.3",
|
|
39
|
-
"unplugin-vue-router": "^0.
|
|
40
|
-
"vite": "^7.2.
|
|
41
|
-
"vite-plugin-vue-devtools": "^8.0.
|
|
39
|
+
"unplugin-vue-router": "^0.17.0",
|
|
40
|
+
"vite": "^7.2.4",
|
|
41
|
+
"vite-plugin-vue-devtools": "^8.0.5",
|
|
42
42
|
"vite-tsconfig-paths": "^5.1.4",
|
|
43
|
-
"vue-tsc": "3.1.
|
|
44
|
-
"wrangler": "^4.
|
|
43
|
+
"vue-tsc": "3.1.4",
|
|
44
|
+
"wrangler": "^4.50.0",
|
|
45
45
|
"zod": "^4.1.12"
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@tailwindcss/vite": "^4.1.17",
|
|
49
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
49
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
50
50
|
"@vue/test-utils": "^2.4.6",
|
|
51
51
|
"@vue/tsconfig": "^0.8.1",
|
|
52
52
|
"jsdom": "^27.2.0",
|
|
53
53
|
"tailwindcss": "^4.1.17",
|
|
54
|
-
"unplugin-vue-router": "^0.
|
|
55
|
-
"vite": "^7.2.
|
|
54
|
+
"unplugin-vue-router": "^0.17.0",
|
|
55
|
+
"vite": "^7.2.4",
|
|
56
56
|
"vite-plugin-dts": "^4.5.4",
|
|
57
57
|
"vue": "^3.5.24",
|
|
58
58
|
"vue-router": "^4.6.3",
|
|
59
|
-
"vue-tsc": "^3.1.
|
|
59
|
+
"vue-tsc": "^3.1.4"
|
|
60
60
|
}
|
|
61
61
|
}
|
package/bin/copy.js
DELETED