@vizejs/native 0.120.0 → 0.123.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/package.json +9 -9
- package/types/compiler.d.ts +2 -0
- package/types/sfc.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizejs/native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.123.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.
|
|
39
|
-
"@vizejs/native-darwin-x64": "0.
|
|
40
|
-
"@vizejs/native-linux-arm64-gnu": "0.
|
|
41
|
-
"@vizejs/native-linux-arm64-musl": "0.
|
|
42
|
-
"@vizejs/native-linux-x64-gnu": "0.
|
|
43
|
-
"@vizejs/native-linux-x64-musl": "0.
|
|
44
|
-
"@vizejs/native-win32-arm64-msvc": "0.
|
|
45
|
-
"@vizejs/native-win32-x64-msvc": "0.
|
|
38
|
+
"@vizejs/native-darwin-arm64": "0.123.0",
|
|
39
|
+
"@vizejs/native-darwin-x64": "0.123.0",
|
|
40
|
+
"@vizejs/native-linux-arm64-gnu": "0.123.0",
|
|
41
|
+
"@vizejs/native-linux-arm64-musl": "0.123.0",
|
|
42
|
+
"@vizejs/native-linux-x64-gnu": "0.123.0",
|
|
43
|
+
"@vizejs/native-linux-x64-musl": "0.123.0",
|
|
44
|
+
"@vizejs/native-win32-arm64-msvc": "0.123.0",
|
|
45
|
+
"@vizejs/native-win32-x64-msvc": "0.123.0"
|
|
46
46
|
},
|
|
47
47
|
"napi": {
|
|
48
48
|
"binaryName": "vize-vitrine",
|
package/types/compiler.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export interface CompilerOptions {
|
|
|
40
40
|
isTs?: boolean;
|
|
41
41
|
/** Whether the template targets a custom renderer instead of the DOM. */
|
|
42
42
|
customRenderer?: boolean;
|
|
43
|
+
/** Enable Vue parser quirk compatibility for known edge cases. */
|
|
44
|
+
vueParserQuirks?: boolean;
|
|
43
45
|
/**
|
|
44
46
|
* Script extension handling: "preserve" (keep TypeScript) or "downcompile" (transpile to JS)
|
|
45
47
|
* Defaults to "downcompile"
|
package/types/sfc.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export interface BatchCompileOptionsNapi {
|
|
|
5
5
|
ssr?: boolean;
|
|
6
6
|
vapor?: boolean;
|
|
7
7
|
customRenderer?: boolean;
|
|
8
|
+
vueParserQuirks?: boolean;
|
|
8
9
|
/** Preserve TypeScript in output when true */
|
|
9
10
|
isTs?: boolean;
|
|
10
11
|
threads?: number;
|
|
@@ -104,6 +105,7 @@ export interface SfcCompileOptionsNapi {
|
|
|
104
105
|
ssr?: boolean;
|
|
105
106
|
vapor?: boolean;
|
|
106
107
|
customRenderer?: boolean;
|
|
108
|
+
vueParserQuirks?: boolean;
|
|
107
109
|
/** Preserve TypeScript in output when true */
|
|
108
110
|
isTs?: boolean;
|
|
109
111
|
/** Scope ID for scoped CSS (e.g., "data-v-abc123") */
|