vize 0.76.0 → 0.77.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/README.md
CHANGED
|
@@ -29,12 +29,26 @@ The npm CLI exposes the common package-script commands:
|
|
|
29
29
|
```bash
|
|
30
30
|
vp exec vize build src
|
|
31
31
|
vp exec vize fmt --write src
|
|
32
|
-
vp exec vize lint src
|
|
33
|
-
vp exec vize check
|
|
32
|
+
vp exec vize lint --preset happy-path src
|
|
33
|
+
vp exec vize check src
|
|
34
34
|
vp exec vize ready src
|
|
35
35
|
vp exec vize upgrade
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
Recommended scripts:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"scripts": {
|
|
43
|
+
"vue:build": "vize build src",
|
|
44
|
+
"vue:fmt": "vize fmt --write src",
|
|
45
|
+
"vue:lint": "vize lint --preset happy-path src",
|
|
46
|
+
"vue:check": "vize check src",
|
|
47
|
+
"vue:ready": "vize ready src"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
38
52
|
Shared config discovery is supported for the npm CLI:
|
|
39
53
|
|
|
40
54
|
- `vize.config.ts`
|
|
@@ -47,10 +61,19 @@ Shared config discovery is supported for the npm CLI:
|
|
|
47
61
|
import { defineConfig } from "vize";
|
|
48
62
|
|
|
49
63
|
export default defineConfig({
|
|
64
|
+
compiler: {
|
|
65
|
+
sourceMap: true,
|
|
66
|
+
vapor: false,
|
|
67
|
+
customRenderer: false,
|
|
68
|
+
},
|
|
69
|
+
vite: {
|
|
70
|
+
scanPatterns: ["src/**/*.vue"],
|
|
71
|
+
},
|
|
50
72
|
linter: {
|
|
51
73
|
preset: "opinionated",
|
|
52
74
|
},
|
|
53
75
|
typeChecker: {
|
|
76
|
+
enabled: true,
|
|
54
77
|
strict: true,
|
|
55
78
|
},
|
|
56
79
|
});
|
|
@@ -58,13 +81,45 @@ export default defineConfig({
|
|
|
58
81
|
|
|
59
82
|
Override config discovery with `--config`, or disable it with `--no-config`.
|
|
60
83
|
|
|
84
|
+
## Static Analysis
|
|
85
|
+
|
|
86
|
+
`vize lint` runs Vue-aware Patina diagnostics through the native binding:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
vp exec vize lint --preset essential --max-warnings 0 src
|
|
90
|
+
vp exec vize lint --preset opinionated --help-level short src
|
|
91
|
+
vp exec vize lint --format json src
|
|
92
|
+
```
|
|
93
|
+
|
|
61
94
|
`vize check` in the npm package uses the packaged NAPI checker so it can run from `package.json`
|
|
62
|
-
scripts after installing `vize
|
|
63
|
-
|
|
64
|
-
|
|
95
|
+
scripts after installing `vize`:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
vp exec vize check src --strict
|
|
99
|
+
vp exec vize check src --show-virtual-ts
|
|
100
|
+
vp exec vize check src --declaration --declaration-dir dist/types
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Use the Rust CLI when you need Corsa project diagnostics across Vue, TS, TSX, and `.d.ts` inputs.
|
|
65
104
|
|
|
66
105
|
`vize ready` runs `fmt --write`, `lint`, `check`, and `build` in that order.
|
|
67
106
|
|
|
107
|
+
## Compiler and Tool Options
|
|
108
|
+
|
|
109
|
+
Important shared fields:
|
|
110
|
+
|
|
111
|
+
| Field | Used by | Purpose |
|
|
112
|
+
| ------------------------- | ---------------------- | ------------------------------------------------------- |
|
|
113
|
+
| `compiler.sourceMap` | Vite plugin | Enable source maps |
|
|
114
|
+
| `compiler.ssr` | npm build, Vite plugin | Force SSR compilation |
|
|
115
|
+
| `compiler.vapor` | npm build, Vite plugin | Enable Vapor compilation |
|
|
116
|
+
| `compiler.customRenderer` | npm build, Vite plugin | Support custom renderer element semantics |
|
|
117
|
+
| `compiler.scriptExt` | npm build | Preserve TypeScript output or downcompile to JavaScript |
|
|
118
|
+
| `vite.scanPatterns` | Vite plugin | Pre-compile matching Vue files |
|
|
119
|
+
| `linter.preset` | npm lint | Select the Patina lint preset |
|
|
120
|
+
| `typeChecker.strict` | npm check | Enable strict checks |
|
|
121
|
+
| `formatter.printWidth` | npm fmt | Set formatting width |
|
|
122
|
+
|
|
68
123
|
## Programmatic Config Helpers
|
|
69
124
|
|
|
70
125
|
```ts
|
|
@@ -92,7 +92,7 @@ interface VitePluginConfig {
|
|
|
92
92
|
}
|
|
93
93
|
//#endregion
|
|
94
94
|
//#region src/types/rules.d.ts
|
|
95
|
-
declare const LINT_RULE_NAMES: readonly ["a11y/alt-text", "a11y/anchor-has-content", "a11y/anchor-is-valid", "a11y/aria-props", "a11y/aria-role", "a11y/aria-unsupported-elements", "a11y/click-events-have-key-events", "a11y/form-control-has-label", "a11y/heading-has-content", "a11y/heading-levels", "a11y/iframe-has-title", "a11y/img-alt", "a11y/interactive-supports-focus", "a11y/label-has-for", "a11y/landmark-roles", "a11y/media-has-caption", "a11y/mouse-events-have-key-events", "a11y/no-access-key", "a11y/no-aria-hidden-on-focusable", "a11y/no-autofocus", "a11y/no-distracting-elements", "a11y/no-i-for-icon", "a11y/no-redundant-roles", "a11y/no-refer-to-non-existent-id", "a11y/no-role-presentation-on-focusable", "a11y/no-static-element-interactions", "a11y/placeholder-label-option", "a11y/role-has-required-aria-props", "a11y/tabindex-no-positive", "a11y/use-list", "html/deprecated-attr", "html/deprecated-element", "html/id-duplication", "html/no-consecutive-br", "html/no-duplicate-dt", "html/no-empty-palpable-content", "html/require-datetime", "script/no-get-current-instance", "script/no-next-tick", "script/no-options-api", "ssr/no-browser-globals-in-ssr", "ssr/no-hydration-mismatch", "type/no-floating-promises", "type/no-unsafe-template-binding", "type/require-typed-emits", "type/require-typed-props", "vapor/no-inline-template", "vapor/no-
|
|
95
|
+
declare const LINT_RULE_NAMES: readonly ["a11y/alt-text", "a11y/anchor-has-content", "a11y/anchor-is-valid", "a11y/aria-props", "a11y/aria-role", "a11y/aria-unsupported-elements", "a11y/click-events-have-key-events", "a11y/form-control-has-label", "a11y/heading-has-content", "a11y/heading-levels", "a11y/iframe-has-title", "a11y/img-alt", "a11y/interactive-supports-focus", "a11y/label-has-for", "a11y/landmark-roles", "a11y/media-has-caption", "a11y/mouse-events-have-key-events", "a11y/no-access-key", "a11y/no-aria-hidden-on-focusable", "a11y/no-autofocus", "a11y/no-distracting-elements", "a11y/no-i-for-icon", "a11y/no-redundant-roles", "a11y/no-refer-to-non-existent-id", "a11y/no-role-presentation-on-focusable", "a11y/no-static-element-interactions", "a11y/placeholder-label-option", "a11y/role-has-required-aria-props", "a11y/tabindex-no-positive", "a11y/use-list", "html/deprecated-attr", "html/deprecated-element", "html/id-duplication", "html/no-consecutive-br", "html/no-duplicate-dt", "html/no-empty-palpable-content", "html/require-datetime", "script/no-get-current-instance", "script/no-next-tick", "script/no-options-api", "ssr/no-browser-globals-in-ssr", "ssr/no-hydration-mismatch", "type/no-floating-promises", "type/no-reactivity-loss", "type/no-unsafe-template-binding", "type/require-typed-emits", "type/require-typed-props", "vapor/no-inline-template", "vapor/no-vue-lifecycle-events", "vapor/prefer-static-class", "vapor/require-vapor-attribute", "vue/attribute-hyphenation", "vue/attribute-order", "vue/component-definition-name-casing", "vue/component-name-in-template-casing", "vue/html-quotes", "vue/html-self-closing", "vue/multi-word-component-names", "vue/mustache-interpolation-spacing", "vue/no-boolean-attr-value", "vue/no-child-content", "vue/no-dupe-v-else-if", "vue/no-duplicate-attributes", "vue/no-inline-style", "vue/no-lone-template", "vue/no-multi-spaces", "vue/no-mutating-props", "vue/no-preprocessor-lang", "vue/no-reserved-component-names", "vue/no-script-non-standard-lang", "vue/no-src-attribute", "vue/no-template-key", "vue/no-template-lang", "vue/no-template-shadow", "vue/no-textarea-mustache", "vue/no-unsafe-url", "vue/no-unused-components", "vue/no-unused-properties", "vue/no-unused-vars", "vue/no-use-v-if-with-v-for", "vue/no-useless-template-attributes", "vue/no-v-html", "vue/no-v-text-v-html-on-component", "vue/permitted-contents", "vue/prefer-props-shorthand", "vue/prop-name-casing", "vue/require-component-is", "vue/require-component-registration", "vue/require-scoped-style", "vue/require-v-for-key", "vue/scoped-event-names", "vue/sfc-element-order", "vue/single-style-block", "vue/use-unique-element-ids", "vue/use-v-on-exact", "vue/v-bind-style", "vue/v-on-style", "vue/v-slot-style", "vue/valid-attribute-name", "vue/valid-v-bind", "vue/valid-v-else", "vue/valid-v-for", "vue/valid-v-if", "vue/valid-v-memo", "vue/valid-v-model", "vue/valid-v-on", "vue/valid-v-show", "vue/valid-v-slot", "vue/warn-custom-block", "vue/warn-custom-directive"];
|
|
96
96
|
type LintRuleName = (typeof LINT_RULE_NAMES)[number];
|
|
97
97
|
type LintRulesConfig = Partial<Record<LintRuleName, RuleSeverity>>;
|
|
98
98
|
//#endregion
|
|
@@ -516,4 +516,4 @@ declare function loadConfig(root: string, options?: LoadConfigOptions): Promise<
|
|
|
516
516
|
declare function normalizeGlobalTypes(config: GlobalTypesConfig): Record<string, GlobalTypeDeclaration>;
|
|
517
517
|
//#endregion
|
|
518
518
|
export { LspConfig as C, CompilerConfig as D, LintRulesConfig as E, VitePluginConfig as O, LinterConfig as S, LintRuleName as T, MuseaA11yConfig as _, loadConfig as a, MuseaVrtConfig as b, LintPreset as c, RuleSeverity as d, UserConfigExport as f, LoadConfigOptions as g, GlobalTypesConfig as h, defineConfig as i, MaybePromise as l, GlobalTypeDeclaration as m, VIZE_CONFIG_JSON_SCHEMA_PATH as n, normalizeGlobalTypes as o, VizeConfig as p, VIZE_CONFIG_PKL_SCHEMA_PATH as r, ConfigEnv as s, CONFIG_FILE_NAMES as t, RuleCategory as u, MuseaAutogenConfig as v, TypeCheckerConfig as w, FormatterConfig as x, MuseaConfig as y };
|
|
519
|
-
//# sourceMappingURL=config-
|
|
519
|
+
//# sourceMappingURL=config-Dt42z0M4.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-
|
|
1
|
+
{"version":3,"file":"config-Dt42z0M4.d.mts","names":[],"sources":["../src/types/compiler.ts","../src/types/rules.ts","../src/types/tools.ts","../src/types/musea.ts","../src/types/loader.ts","../src/types/core.ts","../src/config.ts"],"mappings":";;AAOA;;UAAiB,cAAA;EAAc;;;;EAK7B,IAAA;EAyBA;;;;EAnBA,KAAA;EAiDA;;;;;EA1CA,cAAA;EAgE+B;;;;EA1D/B,GAAA;EAqEsC;;;;EA/DtC,SAAA;EAyDsC;;;;EAnDtC,iBAAA;EAqEA;;;;EA/DA,WAAA;;AC5CF;;;EDkDE,aAAA;EC6DQ;AAEV;;;EDzDE,IAAA;ECyDgD;AAElD;;;EDrDE,SAAA;ECqDyD;;;;ED/CzD,iBAAA;EC+C4B;;;;EDzC5B,iBAAA;AAAA;;;;UAUe,gBAAA;EE/EY;;;;EFoF3B,OAAA,YAAmB,MAAA,aAAmB,MAAA;EEhEI;;;;EFsE1C,OAAA,YAAmB,MAAA,aAAmB,MAAA;EEtFtC;;;;EF4FA,YAAA;EE5EA;;;;EFkFA,cAAA;AAAA;;;cC3GW,eAAA;AAAA,KAiHD,YAAA,WAAuB,eAAA;AAAA,KAEvB,eAAA,GAAkB,OAAA,CAAQ,MAAA,CAAO,YAAA,EAAc,YAAA;;;;;;UC9G1C,YAAA;EFQf;;;EEJA,OAAA;EF6BA;;;;EEvBA,MAAA,GAAS,UAAA;EFqDT;;;EEhDA,KAAA,GAAQ,eAAA;EFgEO;;;EE3Df,UAAA,GAAa,OAAA,CAAQ,MAAA,CAAO,YAAA,EAAc,YAAA;AAAA;;;;UAU3B,iBAAA;EFsDf;;;;EEjDA,OAAA;EFuDsC;;;;EEjDtC,MAAA;;;;AD9CF;ECoDE,UAAA;;;;AD6DF;ECvDE,UAAA;;;;ADyDF;ECnDE,qBAAA;;;;;EAMA,QAAA;ED6CmC;;;ECxCnC,SAAA;AAAA;;;;UAUe,eAAA;;;AAhFjB;;EAqFE,UAAA;EA3ES;;;;EAiFT,QAAA;EAvEa;;;;EA6Eb,OAAA;EAvFS;;;;EA6FT,IAAA;EAnFqB;;;;EAyFrB,WAAA;EA/Ee;;;;EAqFf,aAAA;AAAA;;;;UAUe,SAAA;EAvDf;;;AAUF;EAkDE,OAAA;;;;;;EAOA,IAAA;EA5BA;;;;AAgBF;EAmBE,WAAA;;;;;EAMA,SAAA;EAAA;;;;;;EAQA,MAAA;EAoCA;;;;EA9BA,UAAA;EA4DA;;;;EAtDA,KAAA;EAoFA;;;;EA9EA,UAAA;;ACnLF;;;EDyLE,UAAA;ECpLA;;;;ED0LA,eAAA;EC/KmC;;;;EDqLnC,gBAAA;EC/K8B;;;;EDqL9B,UAAA;EC3KQ;;;AAMV;ED2KE,WAAA;;;;AC1JF;EDgKE,MAAA;;;;;EAMA,QAAA;EC1H4B;;;;EDgI5B,cAAA;EC/IA;;;;EDqJA,aAAA;ECtIA;;;;ED4IA,aAAA;;;AE7OF;;EFmPE,UAAA;EE/OA;;AAWF;;EF0OE,UAAA;EE1O8B;;AAShC;;EFuOE,KAAA;AAAA;;;;AFjQF;;UGAiB,cAAA;EHAc;;;;EGK7B,SAAA;EHyBA;;;;EGnBA,MAAA;EHiDA;;;EG5CA,SAAA,GAAY,KAAA;IAAQ,KAAA;IAAe,MAAA;IAAgB,IAAA;EAAA;AAAA;;;;UAMpC,eAAA;EHuE6B;;;;EGlE5C,OAAA;EHkEmB;;;EG7DnB,KAAA,GAAQ,MAAA;AAAA;;;;UAMO,kBAAA;EFxCJ;;;;EE6CX,OAAA;EFoEU;;;;EE9DV,WAAA;AAAA;;;;UAMe,WAAA;EF0DqB;;;;EErDpC,OAAA;EFqDoC;;;;EE/CpC,OAAA;;;;AD/DF;ECqEE,QAAA;;;;;EAMA,eAAA;EDvDqB;;;;EC6DrB,SAAA;EDvEA;;;EC4EA,GAAA,GAAM,cAAA;EDlEN;;;ECuEA,IAAA,GAAO,eAAA;EDvEmC;;;EC4E1C,OAAA,GAAU,kBAAA;AAAA;;;AHnGZ;;;AAAA,UIEiB,qBAAA;EJGf;;;EICA,IAAA;EJwBA;;;EInBA,YAAA;AAAA;;;;KAMU,iBAAA,GAAoB,MAAA,SAAe,qBAAA;;AJiE/C;;UIxDiB,iBAAA;EJ6DI;;;;;;;EIrDnB,IAAA;EJqDsC;;;EIhDtC,UAAA;EJ4DA;;;EIvDA,GAAA,GAAM,SAAA;AAAA;;;KCzCI,YAAA,MAAkB,CAAA,GAAI,OAAA,CAAQ,CAAA;AAAA,UAEzB,SAAA;EACf,IAAA;EACA,OAAA;EACA,UAAA;AAAA;AAAA,KAGU,gBAAA,GAAmB,UAAA,KAAe,GAAA,EAAK,SAAA,KAAc,YAAA,CAAa,UAAA;AAAA,KAMlE,YAAA;AAAA,KAEA,YAAA;AAAA,KAEA,UAAA;;;;UASK,UAAA;ELoDA;;;EKhDf,OAAA;ELqDsC;;;EKhDtC,QAAA,GAAW,cAAA;ELsDiC;;;EKjD5C,IAAA,GAAO,gBAAA;ELiDP;;;EK5CA,MAAA,GAAS,YAAA;ELwDT;;;EKnDA,WAAA,GAAc,iBAAA;;;AJxDhB;EI6DE,SAAA,GAAY,eAAA;;;;EAKZ,GAAA,GAAM,SAAA;EJ+CgB;;;EI1CtB,KAAA,GAAQ,WAAA;EJ4CE;;;EIvCV,WAAA,GAAc,iBAAA;AAAA;;;cCnEH,iBAAA;AAAA,cAeA,4BAAA;AAAA,cAMA,2BAAA;;;;;iBAMG,YAAA,CAAa,MAAA,EAAQ,gBAAA,GAAmB,gBAAA;;;;iBAOlC,UAAA,CACpB,IAAA,UACA,OAAA,GAAS,iBAAA,GACR,OAAA,CAAQ,UAAA;;;;iBA2LK,oBAAA,CACd,MAAA,EAAQ,iBAAA,GACP,MAAA,SAAe,qBAAA"}
|
package/dist/config.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as loadConfig, i as defineConfig, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, r as VIZE_CONFIG_PKL_SCHEMA_PATH, t as CONFIG_FILE_NAMES } from "./config-
|
|
1
|
+
import { a as loadConfig, i as defineConfig, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, r as VIZE_CONFIG_PKL_SCHEMA_PATH, t as CONFIG_FILE_NAMES } from "./config-Dt42z0M4.mjs";
|
|
2
2
|
export { CONFIG_FILE_NAMES, VIZE_CONFIG_JSON_SCHEMA_PATH, VIZE_CONFIG_PKL_SCHEMA_PATH, defineConfig, loadConfig, normalizeGlobalTypes };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { C as LspConfig, D as CompilerConfig, E as LintRulesConfig, O as VitePluginConfig, S as LinterConfig, T as LintRuleName, _ as MuseaA11yConfig, a as loadConfig, b as MuseaVrtConfig, c as LintPreset, d as RuleSeverity, f as UserConfigExport, g as LoadConfigOptions, h as GlobalTypesConfig, i as defineConfig, l as MaybePromise, m as GlobalTypeDeclaration, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, p as VizeConfig, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as ConfigEnv, t as CONFIG_FILE_NAMES, u as RuleCategory, v as MuseaAutogenConfig, w as TypeCheckerConfig, x as FormatterConfig, y as MuseaConfig } from "./config-
|
|
1
|
+
import { C as LspConfig, D as CompilerConfig, E as LintRulesConfig, O as VitePluginConfig, S as LinterConfig, T as LintRuleName, _ as MuseaA11yConfig, a as loadConfig, b as MuseaVrtConfig, c as LintPreset, d as RuleSeverity, f as UserConfigExport, g as LoadConfigOptions, h as GlobalTypesConfig, i as defineConfig, l as MaybePromise, m as GlobalTypeDeclaration, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, p as VizeConfig, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as ConfigEnv, t as CONFIG_FILE_NAMES, u as RuleCategory, v as MuseaAutogenConfig, w as TypeCheckerConfig, x as FormatterConfig, y as MuseaConfig } from "./config-Dt42z0M4.mjs";
|
|
2
2
|
export { CONFIG_FILE_NAMES, type CompilerConfig, type ConfigEnv, type FormatterConfig, type GlobalTypeDeclaration, type GlobalTypesConfig, type LintPreset, type LintRuleName, type LintRulesConfig, type LinterConfig, type LoadConfigOptions, type LspConfig, type MaybePromise, type MuseaA11yConfig, type MuseaAutogenConfig, type MuseaConfig, type MuseaVrtConfig, type RuleCategory, type RuleSeverity, type TypeCheckerConfig, type UserConfigExport, VIZE_CONFIG_JSON_SCHEMA_PATH, VIZE_CONFIG_PKL_SCHEMA_PATH, type VitePluginConfig, type VizeConfig, defineConfig, loadConfig, normalizeGlobalTypes };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.0",
|
|
4
4
|
"description": "Vize - High-performance Vue.js toolchain in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"vite-plus": "0.1.19"
|
|
57
57
|
},
|
|
58
58
|
"optionalDependencies": {
|
|
59
|
-
"@vizejs/native-darwin-arm64": "0.
|
|
60
|
-
"@vizejs/native-darwin-x64": "0.
|
|
61
|
-
"@vizejs/native-linux-arm64-gnu": "0.
|
|
62
|
-
"@vizejs/native-linux-arm64-musl": "0.
|
|
63
|
-
"@vizejs/native-linux-x64-gnu": "0.
|
|
64
|
-
"@vizejs/native-linux-x64-musl": "0.
|
|
65
|
-
"@vizejs/native-win32-arm64-msvc": "0.
|
|
66
|
-
"@vizejs/native-win32-x64-msvc": "0.
|
|
59
|
+
"@vizejs/native-darwin-arm64": "0.77.0",
|
|
60
|
+
"@vizejs/native-darwin-x64": "0.77.0",
|
|
61
|
+
"@vizejs/native-linux-arm64-gnu": "0.77.0",
|
|
62
|
+
"@vizejs/native-linux-arm64-musl": "0.77.0",
|
|
63
|
+
"@vizejs/native-linux-x64-gnu": "0.77.0",
|
|
64
|
+
"@vizejs/native-linux-x64-musl": "0.77.0",
|
|
65
|
+
"@vizejs/native-win32-arm64-msvc": "0.77.0",
|
|
66
|
+
"@vizejs/native-win32-x64-msvc": "0.77.0"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
69
|
"node": ">=18"
|
package/src/types/rules.ts
CHANGED
|
@@ -47,11 +47,11 @@ export const LINT_RULE_NAMES = [
|
|
|
47
47
|
"ssr/no-browser-globals-in-ssr",
|
|
48
48
|
"ssr/no-hydration-mismatch",
|
|
49
49
|
"type/no-floating-promises",
|
|
50
|
+
"type/no-reactivity-loss",
|
|
50
51
|
"type/no-unsafe-template-binding",
|
|
51
52
|
"type/require-typed-emits",
|
|
52
53
|
"type/require-typed-props",
|
|
53
54
|
"vapor/no-inline-template",
|
|
54
|
-
"vapor/no-suspense",
|
|
55
55
|
"vapor/no-vue-lifecycle-events",
|
|
56
56
|
"vapor/prefer-static-class",
|
|
57
57
|
"vapor/require-vapor-attribute",
|