create-vuepress-theme-plume 1.0.0-rc.178 → 1.0.0-rc.179

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
@@ -14,7 +14,7 @@ import handlebars from "handlebars";
14
14
  import { osLocale } from "os-locale";
15
15
 
16
16
  //#region package.json
17
- var version = "1.0.0-rc.177";
17
+ var version = "1.0.0-rc.179";
18
18
 
19
19
  //#endregion
20
20
  //#region src/constants.ts
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.178",
4
+ "version": "1.0.0-rc.179",
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.11.0",
31
- "@pengzhanbo/utils": "^2.1.0",
31
+ "@pengzhanbo/utils": "^2.1.2",
32
32
  "cac": "^6.7.14",
33
33
  "handlebars": "^4.7.8",
34
34
  "nano-spawn": "^2.0.0",
@@ -38,10 +38,14 @@
38
38
  },
39
39
  "plume-deps": {
40
40
  "vuepress": "2.0.0-rc.26",
41
- "vue": "^3.5.22",
41
+ "vue": "^3.5.25",
42
42
  "http-server": "^14.1.1",
43
43
  "typescript": "^5.9.3"
44
44
  },
45
+ "publishConfig": {
46
+ "access": "public",
47
+ "provenance": true
48
+ },
45
49
  "scripts": {
46
50
  "build": "tsdown"
47
51
  }
@@ -56,11 +56,15 @@ jobs:
56
56
  # Run the build script
57
57
  {{#unless (equal packageManager "yarn")}}
58
58
  - name: Build VuePress site
59
+ env:
60
+ NODE_OPTIONS: --max_old_space_size=8192
59
61
  run: {{packageManager}} run docs:build
60
62
  {{/unless}}
61
63
  {{#if (equal packageManager "yarn")}}
62
64
  - name: Build VuePress site
63
65
  uses: borales/actions-yarn@v4
66
+ env:
67
+ NODE_OPTIONS: --max_old_space_size=8192
64
68
  with:
65
69
  cmd: docs:build
66
70
  {{/if}}