create-vuepress-theme-plume 1.0.0-rc.92 → 1.0.0-rc.93

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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -482,7 +482,7 @@ async function run(mode, root) {
482
482
  await execaCommand3(pm === "yarn" ? "yarn" : `${pm} install`, { cwd });
483
483
  }
484
484
  const cdCommand = mode === 1 /* create */ ? colors.green(`cd ${data.root}`) : "";
485
- const runCommand = colors.green(pm === "yarn" ? "yarn dev" : `${pm} run dev`);
485
+ const runCommand = colors.green(pm === "yarn" ? "yarn docs:dev" : `${pm} run docs:dev`);
486
486
  const installCommand = colors.green(pm === "yarn" ? "yarn" : `${pm} install`);
487
487
  progress.stop(t("spinner.stop"));
488
488
  if (mode === 1 /* create */) {
@@ -505,5 +505,5 @@ var cli = cac("create-vuepress-theme-plume");
505
505
  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));
506
506
  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));
507
507
  cli.help();
508
- cli.version("1.0.0-rc.91");
508
+ cli.version("1.0.0-rc.92");
509
509
  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.92",
4
+ "version": "1.0.0-rc.93",
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",