create-vuepress-theme-plume 1.0.0-rc.98 → 1.0.0-rc.99
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/lib/index.js
CHANGED
|
@@ -527,5 +527,5 @@ var cli = cac("create-vuepress-theme-plume");
|
|
|
527
527
|
cli.command("[root]", "create a new vuepress-theme-plume project / \u521B\u5EFA\u65B0\u7684 vuepress-theme-plume \u9879\u76EE").action((root) => run(1 /* create */, root));
|
|
528
528
|
cli.command("init [root]", "Initial vuepress-theme-plume in the existing project / \u5728\u73B0\u6709\u9879\u76EE\u4E2D\u521D\u59CB\u5316 vuepress-theme-plume").action((root) => run(0 /* init */, root));
|
|
529
529
|
cli.help();
|
|
530
|
-
cli.version("1.0.0-rc.
|
|
530
|
+
cli.version("1.0.0-rc.98");
|
|
531
531
|
cli.parse();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vuepress-theme-plume",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.0-rc.
|
|
4
|
+
"version": "1.0.0-rc.99",
|
|
5
5
|
"description": "The cli for create vuepress-theme-plume's project",
|
|
6
6
|
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@clack/prompts": "^0.7.0",
|
|
31
31
|
"@pengzhanbo/utils": "^1.1.2",
|
|
32
32
|
"cac": "^6.7.14",
|
|
33
|
-
"execa": "^9.
|
|
33
|
+
"execa": "^9.4.0",
|
|
34
34
|
"handlebars": "^4.7.8",
|
|
35
35
|
"picocolors": "^1.1.0"
|
|
36
36
|
},
|
|
@@ -23,11 +23,6 @@ jobs:
|
|
|
23
23
|
{{#if (equal packageManager "pnpm")}}
|
|
24
24
|
- name: Setup pnpm
|
|
25
25
|
uses: pnpm/action-setup@v4
|
|
26
|
-
with:
|
|
27
|
-
# 选择要使用的 pnpm 版本
|
|
28
|
-
version: 9
|
|
29
|
-
# 使用 pnpm 安装依赖
|
|
30
|
-
run_install: true
|
|
31
26
|
{{/if}}
|
|
32
27
|
- name: Setup Node.js
|
|
33
28
|
uses: actions/setup-node@v4
|
|
@@ -42,6 +37,13 @@ jobs:
|
|
|
42
37
|
run: npm ci
|
|
43
38
|
{{/if}}
|
|
44
39
|
|
|
40
|
+
{{#if (equal packageManager "pnpm")}}
|
|
41
|
+
# 安装依赖
|
|
42
|
+
# Install dependencies
|
|
43
|
+
- name: Install Dependencies
|
|
44
|
+
run: pnpm install --frozen-lockfile
|
|
45
|
+
{{/if}}
|
|
46
|
+
|
|
45
47
|
{{#if (equal packageManager "yarn")}}
|
|
46
48
|
- name: Run install
|
|
47
49
|
uses: borales/actions-yarn@v4
|