@pubinfo-pr/cli 0.182.3 → 0.182.5
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.
|
@@ -11,8 +11,8 @@ function ensureValidIdentifier(value, label) {
|
|
|
11
11
|
}
|
|
12
12
|
function ensureMonorepoAppsDir(root) {
|
|
13
13
|
const appsDir = resolve(root, "apps");
|
|
14
|
-
if (!existsSync(appsDir)) throw new Error("未检测到 apps 目录,请在 pubinfo
|
|
15
|
-
if (!existsSync(resolve(root, "pnpm-workspace.yaml"))) throw new Error("未找到 pnpm-workspace.yaml,当前目录不是 pubinfo
|
|
14
|
+
if (!existsSync(appsDir)) throw new Error("未检测到 apps 目录,请在 pubinfo monorepo 根目录执行该命令");
|
|
15
|
+
if (!existsSync(resolve(root, "pnpm-workspace.yaml"))) throw new Error("未找到 pnpm-workspace.yaml,当前目录不是 pubinfo monorepo 工程");
|
|
16
16
|
return appsDir;
|
|
17
17
|
}
|
|
18
18
|
async function resolvePubinfoVersionFromApps(appsDir) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pubinfo-pr/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.182.
|
|
4
|
+
"version": "0.182.5",
|
|
5
5
|
"description": "CLI for Pubinfo",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./bin/pubinfo.mjs"
|
|
@@ -18,20 +18,20 @@
|
|
|
18
18
|
"node": "^20.19.0 || >=22.12.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@pubinfo-pr/vite": "0.182.
|
|
21
|
+
"@pubinfo-pr/vite": "0.182.5"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@pubinfo-pr/commitlint": "0.182.
|
|
25
|
-
"@pubinfo-pr/shared": "0.182.
|
|
24
|
+
"@pubinfo-pr/commitlint": "0.182.5",
|
|
25
|
+
"@pubinfo-pr/shared": "0.182.5",
|
|
26
26
|
"cheerio": "^1.1.2",
|
|
27
27
|
"citty": "^0.1.6",
|
|
28
|
-
"create-pubinfo-pr": "0.182.
|
|
28
|
+
"create-pubinfo-pr": "0.182.5",
|
|
29
29
|
"execa": "^9.6.0",
|
|
30
30
|
"globby": "^14.1.0",
|
|
31
31
|
"pkg-types": "^2.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@pubinfo-pr/vite": "0.182.
|
|
34
|
+
"@pubinfo-pr/vite": "0.182.5",
|
|
35
35
|
"@types/node": "^24.0.10"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|