@vizejs/native 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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/types/lint.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/native",
3
- "version": "0.115.0",
3
+ "version": "0.116.0",
4
4
  "description": "High-performance Vue.js compiler - Native bindings",
5
5
  "keywords": [
6
6
  "compiler",
@@ -35,14 +35,14 @@
35
35
  "@napi-rs/cli": "3.6.2"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@vizejs/native-darwin-arm64": "0.115.0",
39
- "@vizejs/native-darwin-x64": "0.115.0",
40
- "@vizejs/native-linux-arm64-gnu": "0.115.0",
41
- "@vizejs/native-linux-arm64-musl": "0.115.0",
42
- "@vizejs/native-linux-x64-gnu": "0.115.0",
43
- "@vizejs/native-linux-x64-musl": "0.115.0",
44
- "@vizejs/native-win32-arm64-msvc": "0.115.0",
45
- "@vizejs/native-win32-x64-msvc": "0.115.0"
38
+ "@vizejs/native-darwin-arm64": "0.116.0",
39
+ "@vizejs/native-darwin-x64": "0.116.0",
40
+ "@vizejs/native-linux-arm64-gnu": "0.116.0",
41
+ "@vizejs/native-linux-arm64-musl": "0.116.0",
42
+ "@vizejs/native-linux-x64-gnu": "0.116.0",
43
+ "@vizejs/native-linux-x64-musl": "0.116.0",
44
+ "@vizejs/native-win32-arm64-msvc": "0.116.0",
45
+ "@vizejs/native-win32-x64-msvc": "0.116.0"
46
46
  },
47
47
  "napi": {
48
48
  "binaryName": "vize-vitrine",
package/types/lint.d.ts CHANGED
@@ -12,7 +12,7 @@ export interface LintOptionsNapi {
12
12
  fix?: boolean;
13
13
  /** Help display level: "full", "short", "none" */
14
14
  helpLevel?: string;
15
- /** Lint preset: "general-recommended", "essential", "incremental", "opinionated", or "nuxt" */
15
+ /** Lint preset: "general-recommended", "essential", "incremental", "ecosystem", "opinionated", or "nuxt" */
16
16
  preset?: string;
17
17
  }
18
18
 
@@ -38,7 +38,7 @@ export interface PatinaLintOptionsNapi {
38
38
  locale?: string;
39
39
  /** Help display level: "full", "short", or "none" */
40
40
  helpLevel?: string;
41
- /** Lint preset: "general-recommended", "essential", "incremental", "opinionated", or "nuxt" */
41
+ /** Lint preset: "general-recommended", "essential", "incremental", "ecosystem", "opinionated", or "nuxt" */
42
42
  preset?: string;
43
43
  /** Optional list of Patina rule names to enable */
44
44
  enabledRules?: Array<string>;