@varlet/vite-plugins 3.5.1-alpha.1726764162524 → 3.5.1

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/package.json +2 -2
  2. package/src/markdown.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/vite-plugins",
3
- "version": "3.5.1-alpha.1726764162524",
3
+ "version": "3.5.1",
4
4
  "type": "module",
5
5
  "description": "vite plugins of varlet",
6
6
  "main": "lib/index.js",
@@ -26,7 +26,7 @@
26
26
  "highlight.js": "^10.7.2",
27
27
  "markdown-it": "^12.2.3",
28
28
  "pinyin-pro": "3.17.0",
29
- "@varlet/shared": "3.5.1-alpha.1726764162524"
29
+ "@varlet/shared": "3.5.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/ejs": "^3.1.1",
package/src/markdown.ts CHANGED
@@ -148,7 +148,7 @@ export function markdown(options: MarkdownOptions): Plugin {
148
148
  return
149
149
  }
150
150
 
151
- const {read} = ctx
151
+ const { read } = ctx
152
152
  ctx.read = async () => markdownToVue(await read(), options)
153
153
  },
154
154
  }