@vizejs/native 0.312.0 → 0.314.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 (3) hide show
  1. package/index.d.ts +3 -0
  2. package/index.js +1 -0
  3. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -158,6 +158,9 @@ export declare function buildInspectorGraph(
158
158
  files: Array<InspectorSourceFileNapi>,
159
159
  ): InspectorGraphNapi;
160
160
 
161
+ /** Resolve effective lint rules and provenance using Vize's execution matcher. */
162
+ export declare function inspectLintPlan(plan: string, root: string, files: Array<string>): string;
163
+
161
164
  /** Catalog entry for NAPI */
162
165
  export interface CatalogEntryNapi {
163
166
  title: string;
package/index.js CHANGED
@@ -46,6 +46,7 @@ module.exports.hasSfcScopedStyle = nativeBinding.hasSfcScopedStyle;
46
46
  module.exports.hasViteHmrChanges = nativeBinding.hasViteHmrChanges;
47
47
  module.exports.hasVitePrecompileFileMetadataChanged =
48
48
  nativeBinding.hasVitePrecompileFileMetadataChanged;
49
+ module.exports.inspectLintPlan = nativeBinding.inspectLintPlan;
49
50
  module.exports.isBuiltinViteDefine = nativeBinding.isBuiltinViteDefine;
50
51
  module.exports.isSfcImportableAssetUrl = nativeBinding.isSfcImportableAssetUrl;
51
52
  module.exports.isViteBareSpecifier = nativeBinding.isViteBareSpecifier;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/native",
3
- "version": "0.312.0",
3
+ "version": "0.314.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.312.0",
39
- "@vizejs/native-darwin-x64": "0.312.0",
40
- "@vizejs/native-linux-arm64-gnu": "0.312.0",
41
- "@vizejs/native-linux-arm64-musl": "0.312.0",
42
- "@vizejs/native-linux-x64-gnu": "0.312.0",
43
- "@vizejs/native-linux-x64-musl": "0.312.0",
44
- "@vizejs/native-win32-arm64-msvc": "0.312.0",
45
- "@vizejs/native-win32-x64-msvc": "0.312.0"
38
+ "@vizejs/native-darwin-arm64": "0.314.0",
39
+ "@vizejs/native-darwin-x64": "0.314.0",
40
+ "@vizejs/native-linux-arm64-gnu": "0.314.0",
41
+ "@vizejs/native-linux-arm64-musl": "0.314.0",
42
+ "@vizejs/native-linux-x64-gnu": "0.314.0",
43
+ "@vizejs/native-linux-x64-musl": "0.314.0",
44
+ "@vizejs/native-win32-arm64-msvc": "0.314.0",
45
+ "@vizejs/native-win32-x64-msvc": "0.314.0"
46
46
  },
47
47
  "napi": {
48
48
  "binaryName": "vize-vitrine",