@varlet/vite-plugins 2.18.0-alpha.1697555377370 → 2.18.0-alpha.1697608760113

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
@@ -94,7 +94,6 @@ function markdown(options) {
94
94
  return markdownToVue(source, options);
95
95
  } catch (e) {
96
96
  this.error(e);
97
- return "";
98
97
  }
99
98
  },
100
99
  async handleHotUpdate(ctx) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/vite-plugins",
3
- "version": "2.18.0-alpha.1697555377370",
3
+ "version": "2.18.0-alpha.1697608760113",
4
4
  "type": "module",
5
5
  "description": "vite plugins of varlet",
6
6
  "main": "lib/index.js",
@@ -25,7 +25,7 @@
25
25
  "fs-extra": "^9.0.1",
26
26
  "highlight.js": "^10.7.2",
27
27
  "markdown-it": "^12.2.3",
28
- "@varlet/shared": "2.18.0-alpha.1697555377370"
28
+ "@varlet/shared": "2.18.0-alpha.1697608760113"
29
29
  },
30
30
  "devDependencies": {
31
31
  "tsup": "7.2.0",
package/src/markdown.ts CHANGED
@@ -133,7 +133,6 @@ export function markdown(options: MarkdownOptions): Plugin {
133
133
  return markdownToVue(source, options)
134
134
  } catch (e: any) {
135
135
  this.error(e)
136
- return ''
137
136
  }
138
137
  },
139
138