create-vuepress-theme-plume 1.0.0-rc.143 → 1.0.0-rc.145
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
|
@@ -119,7 +119,7 @@ async function createPackageJson(mode, pkg, {
|
|
|
119
119
|
pkg.author = userInfo.username + (userInfo.email ? ` <${userInfo.email}>` : "");
|
|
120
120
|
}
|
|
121
121
|
pkg.license = "MIT";
|
|
122
|
-
pkg.engines = { node: "^
|
|
122
|
+
pkg.engines = { node: "^20.6.0 || >=22.0.0" };
|
|
123
123
|
}
|
|
124
124
|
if (injectNpmScripts) {
|
|
125
125
|
pkg.scripts ??= {};
|
|
@@ -562,5 +562,5 @@ var cli = cac("create-vuepress-theme-plume");
|
|
|
562
562
|
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));
|
|
563
563
|
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));
|
|
564
564
|
cli.help();
|
|
565
|
-
cli.version("1.0.0-rc.
|
|
565
|
+
cli.version("1.0.0-rc.144");
|
|
566
566
|
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.145",
|
|
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.10.1",
|
|
31
|
-
"@pengzhanbo/utils": "^2.
|
|
31
|
+
"@pengzhanbo/utils": "^2.1.0",
|
|
32
32
|
"cac": "^6.7.14",
|
|
33
33
|
"execa": "^9.5.2",
|
|
34
34
|
"handlebars": "^4.7.8",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"picocolors": "^1.1.1"
|
|
37
37
|
},
|
|
38
38
|
"plume-deps": {
|
|
39
|
-
"vuepress": "2.0.0-rc.
|
|
39
|
+
"vuepress": "2.0.0-rc.22",
|
|
40
40
|
"vue": "^3.5.13",
|
|
41
|
-
"sass-embedded": "^1.
|
|
41
|
+
"sass-embedded": "^1.87.0",
|
|
42
42
|
"sass-loader": "^16.0.5",
|
|
43
43
|
"http-server": "^14.1.1",
|
|
44
44
|
"typescript": "^5.8.3"
|
|
@@ -118,7 +118,7 @@ export default defineUserConfig({
|
|
|
118
118
|
// youtube: true, // 启用嵌入 youtube视频 语法 @[youtube](video_id)
|
|
119
119
|
// artPlayer: true, // 启用嵌入 artPlayer 本地视频 语法 @[artPlayer](url)
|
|
120
120
|
// audioReader: true, // 启用嵌入音频朗读功能 语法 @[audioReader](url)
|
|
121
|
-
// icons: true, // 启用内置图标语法
|
|
121
|
+
// icons: true, // 启用内置图标语法 ::icon-name::
|
|
122
122
|
// codepen: true, // 启用嵌入 codepen 语法 @[codepen](user/slash)
|
|
123
123
|
// replit: true, // 启用嵌入 replit 语法 @[replit](user/repl-name)
|
|
124
124
|
// codeSandbox: true, // 启用嵌入 codeSandbox 语法 @[codeSandbox](id)
|