@vizejs/vite-plugin 0.115.0 → 0.116.0
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/dist/index.d.mts +5 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -97,7 +97,7 @@ interface LinterConfig {
|
|
|
97
97
|
/**
|
|
98
98
|
* Built-in lint preset
|
|
99
99
|
*/
|
|
100
|
-
preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "nuxt";
|
|
100
|
+
preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "ecosystem" | "nuxt";
|
|
101
101
|
/**
|
|
102
102
|
* Rules to enable/disable
|
|
103
103
|
*/
|
|
@@ -290,6 +290,10 @@ interface LanguageServerConfig {
|
|
|
290
290
|
* Enable editor-oriented IDE features
|
|
291
291
|
*/
|
|
292
292
|
editor?: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Enable Vue ecosystem lint and editor helpers
|
|
295
|
+
*/
|
|
296
|
+
ecosystem?: boolean;
|
|
293
297
|
/**
|
|
294
298
|
* Enable completions
|
|
295
299
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizejs/vite-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.116.0",
|
|
4
4
|
"description": "High-performance native Vite plugin for Vue SFC compilation powered by Vize",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compiler",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@vizejs/native": "0.
|
|
40
|
+
"@vizejs/native": "0.116.0",
|
|
41
41
|
"tinyglobby": "0.2.16",
|
|
42
|
-
"vize": "0.
|
|
42
|
+
"vize": "0.116.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "25.7.0",
|