create-vuepress-theme-plume 1.0.0-rc.119 → 1.0.0-rc.120

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
@@ -547,5 +547,5 @@ var cli = cac("create-vuepress-theme-plume");
547
547
  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));
548
548
  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));
549
549
  cli.help();
550
- cli.version("1.0.0-rc.118");
550
+ cli.version("1.0.0-rc.119");
551
551
  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.119",
4
+ "version": "1.0.0-rc.120",
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",
@@ -28,7 +28,7 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "@clack/prompts": "^0.8.2",
31
- "@pengzhanbo/utils": "^1.1.2",
31
+ "@pengzhanbo/utils": "^1.2.0",
32
32
  "cac": "^6.7.14",
33
33
  "execa": "^9.5.1",
34
34
  "handlebars": "^4.7.8",
@@ -37,10 +37,10 @@
37
37
  "plume-deps": {
38
38
  "vuepress": "2.0.0-rc.18",
39
39
  "vue": "^3.5.13",
40
- "sass-embedded": "^1.80.6",
41
- "sass-loader": "^16.0.3",
40
+ "sass-embedded": "^1.82.0",
41
+ "sass-loader": "^16.0.4",
42
42
  "http-server": "^14.1.1",
43
- "typescript": "^5.6.3"
43
+ "typescript": "^5.7.2"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsup"
@@ -25,6 +25,9 @@ export default defineUserConfig({
25
25
  theme: plumeTheme({
26
26
  // 添加您的部署域名
27
27
  // hostname: 'https://your_site_url',
28
+ // your git repo url
29
+ docsRepo: '',
30
+ docsDir: '{{ docsDir }}',
28
31
 
29
32
  plugins: {
30
33
  /**
@@ -12,9 +12,6 @@ import { notes } from './notes'
12
12
  */
13
13
  export default defineThemeConfig({
14
14
  logo: 'https://theme-plume.vuejs.press/plume.png',
15
- // your git repo url
16
- docsRepo: '',
17
- docsDir: '{{ docsDir }}',
18
15
 
19
16
  appearance: true,
20
17