vize 0.161.0 → 0.162.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 +9 -2
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -23,6 +23,13 @@ Need `vp` first? Install Vite+ once from the [Vite+ install guide](https://vitep
|
|
|
23
23
|
vp install -D vize
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
`vize check` also needs the Corsa runtime from `@typescript/native-preview`. Install it in projects
|
|
27
|
+
that run `vize check` from package scripts:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
vp install -D @typescript/native-preview
|
|
31
|
+
```
|
|
32
|
+
|
|
26
33
|
## CLI
|
|
27
34
|
|
|
28
35
|
The npm CLI exposes the common package-script commands:
|
|
@@ -104,8 +111,8 @@ Lint output supports `text`, `ansi`, `plain`, `json`, `stylish`, `markdown`, `ht
|
|
|
104
111
|
The human and agent-friendly formats include local rule documentation paths such as
|
|
105
112
|
`docs/content/rules/vue.md`.
|
|
106
113
|
|
|
107
|
-
`vize check` in the npm package uses the packaged NAPI checker
|
|
108
|
-
scripts after installing
|
|
114
|
+
`vize check` in the npm package uses the packaged NAPI checker and the `@typescript/native-preview`
|
|
115
|
+
Corsa runtime, so it can run from `package.json` scripts after installing both packages:
|
|
109
116
|
|
|
110
117
|
```bash
|
|
111
118
|
vp exec vize check src --strict
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.162.0",
|
|
4
4
|
"description": "Vize - High-performance Vue.js toolchain in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@vizejs/native": "0.
|
|
53
|
+
"@vizejs/native": "0.162.0",
|
|
54
54
|
"oxc-transform": "0.130.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
@@ -63,9 +63,13 @@
|
|
|
63
63
|
"vite-plus": "0.1.21"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@pkl-community/pkl": "0.27.2"
|
|
66
|
+
"@pkl-community/pkl": "0.27.2",
|
|
67
|
+
"@typescript/native-preview": "7.0.0-dev.20260514.1"
|
|
67
68
|
},
|
|
68
69
|
"peerDependenciesMeta": {
|
|
70
|
+
"@typescript/native-preview": {
|
|
71
|
+
"optional": true
|
|
72
|
+
},
|
|
69
73
|
"@pkl-community/pkl": {
|
|
70
74
|
"optional": true
|
|
71
75
|
}
|