create-vuepress-theme-plume 1.0.0-rc.101 → 1.0.0-rc.102

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
@@ -21,6 +21,7 @@ var deployOptions = [
21
21
  import path4 from "node:path";
22
22
  import process4 from "node:process";
23
23
  import { intro, outro, spinner } from "@clack/prompts";
24
+ import { sleep } from "@pengzhanbo/utils";
24
25
  import { execaCommand as execaCommand3 } from "execa";
25
26
  import colors from "picocolors";
26
27
 
@@ -493,6 +494,7 @@ async function run(mode, root) {
493
494
  const progress = spinner();
494
495
  progress.start(t("spinner.start"));
495
496
  await generate(mode, data);
497
+ await sleep(200);
496
498
  const cwd = path4.join(process4.cwd(), data.root);
497
499
  if (data.git) {
498
500
  progress.message(t("spinner.git"));
@@ -527,5 +529,5 @@ var cli = cac("create-vuepress-theme-plume");
527
529
  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
530
  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
531
  cli.help();
530
- cli.version("1.0.0-rc.100");
532
+ cli.version("1.0.0-rc.101");
531
533
  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.101",
4
+ "version": "1.0.0-rc.102",
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",
@@ -23,6 +23,7 @@ jobs:
23
23
  {{#if (equal packageManager "pnpm")}}
24
24
  - name: Setup pnpm
25
25
  uses: pnpm/action-setup@v4
26
+
26
27
  {{/if}}
27
28
  - name: Setup Node.js
28
29
  uses: actions/setup-node@v4