oxlint-plugin-vize 0.59.0 → 0.60.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/README.md +3 -3
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -36,10 +36,10 @@ vp run --filter './npm/vize-native' build
36
36
  vp run --filter './npm/oxlint-plugin-vize' build
37
37
  ```
38
38
 
39
- Install it from npm with:
39
+ Install `vp` once from the [Vite+ install guide](https://viteplus.dev/guide/install), then add it with:
40
40
 
41
41
  ```bash
42
- pnpm add -D oxlint oxlint-plugin-vize
42
+ vp install -D oxlint oxlint-plugin-vize
43
43
  ```
44
44
 
45
45
  `oxlint-plugin-vize` pulls the appropriate Vize native binding for the current platform through optional dependencies, so no separate `@vizejs/native` install is required for published builds.
@@ -131,7 +131,7 @@ If you want to adopt Vize one rule at a time, use `"preset": "incremental"`. In
131
131
  For day-to-day terminal runs, the recommended command today is:
132
132
 
133
133
  ```bash
134
- pnpm exec oxlint-vize -c .oxlintrc.json -f stylish src
134
+ vp exec oxlint-vize -c .oxlintrc.json -f stylish src
135
135
  ```
136
136
 
137
137
  `oxlint-vize` is a thin wrapper around `oxlint`. Until upstream JS plugin coverage improves, it appends a temporary `<script setup>` block only for scriptless `.vue` files so Oxlint's JS plugin pipeline still invokes Vize, then rewrites reported paths back to the original files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxlint-plugin-vize",
3
- "version": "0.59.0",
3
+ "version": "0.60.0",
4
4
  "description": "Oxlint JS plugin bridge for Vize Patina",
5
5
  "keywords": [
6
6
  "lint",
@@ -40,21 +40,21 @@
40
40
  "devDependencies": {
41
41
  "@tsdown/css": "0.21.9",
42
42
  "@types/node": "25.6.0",
43
- "@vizejs/native": "0.59.0",
43
+ "@vizejs/native": "0.60.0",
44
44
  "tsdown": "0.21.9",
45
45
  "typescript": "6.0.3",
46
46
  "vite": "npm:@voidzero-dev/vite-plus-core@0.1.19",
47
47
  "vite-plus": "0.1.19"
48
48
  },
49
49
  "optionalDependencies": {
50
- "@vizejs/native-darwin-arm64": "0.59.0",
51
- "@vizejs/native-darwin-x64": "0.59.0",
52
- "@vizejs/native-linux-arm64-gnu": "0.59.0",
53
- "@vizejs/native-linux-arm64-musl": "0.59.0",
54
- "@vizejs/native-linux-x64-gnu": "0.59.0",
55
- "@vizejs/native-linux-x64-musl": "0.59.0",
56
- "@vizejs/native-win32-arm64-msvc": "0.59.0",
57
- "@vizejs/native-win32-x64-msvc": "0.59.0"
50
+ "@vizejs/native-darwin-arm64": "0.60.0",
51
+ "@vizejs/native-darwin-x64": "0.60.0",
52
+ "@vizejs/native-linux-arm64-gnu": "0.60.0",
53
+ "@vizejs/native-linux-arm64-musl": "0.60.0",
54
+ "@vizejs/native-linux-x64-gnu": "0.60.0",
55
+ "@vizejs/native-linux-x64-musl": "0.60.0",
56
+ "@vizejs/native-win32-arm64-msvc": "0.60.0",
57
+ "@vizejs/native-win32-x64-msvc": "0.60.0"
58
58
  },
59
59
  "engines": {
60
60
  "node": ">=24"