create-vuepress-theme-plume 1.0.0-rc.133 → 1.0.0-rc.135

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.132");
550
+ cli.version("1.0.0-rc.134");
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.133",
4
+ "version": "1.0.0-rc.135",
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",
@@ -37,7 +37,7 @@
37
37
  "plume-deps": {
38
38
  "vuepress": "2.0.0-rc.20",
39
39
  "vue": "^3.5.13",
40
- "sass-embedded": "^1.85.0",
40
+ "sass-embedded": "^1.85.1",
41
41
  "sass-loader": "^16.0.5",
42
42
  "http-server": "^14.1.1",
43
43
  "typescript": "^5.7.3"
@@ -146,6 +146,17 @@ export default defineUserConfig({
146
146
  // imageSize: 'local', // 启用 自动填充 图片宽高属性,避免页面抖动
147
147
  // },
148
148
 
149
+ /**
150
+ * 为 Markdown 图像添加附加功能。
151
+ * @see https://theme-plume.vuejs.press/config/plugins/markdown-image/
152
+ */
153
+ // markdownImage: {
154
+ // figure: true, // 启用 figure
155
+ // lazyload: true, // 启用图片懒加载
156
+ // mark: true, // 启用图片标记
157
+ // size: true, // 启用图片大小
158
+ // },
159
+
149
160
  /**
150
161
  * 在 Markdown 文件中导入其他 markdown 文件内容。
151
162
  * @see https://theme-plume.vuejs.press/guide/markdown/include/