vize 0.108.0 → 0.112.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 +4 -0
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -58,6 +58,10 @@ Shared config discovery is supported for the npm CLI:
58
58
  - `vize.config.pkl`
59
59
  - `vize.config.json`
60
60
 
61
+ Pkl config files require either `@pkl-community/pkl` installed in the project or a `pkl` binary on
62
+ `PATH`. The Pkl runtime is optional so packages that only consume Vize through framework plugins do
63
+ not install it by default.
64
+
61
65
  ```ts
62
66
  import { defineConfig } from "vize";
63
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vize",
3
- "version": "0.108.0",
3
+ "version": "0.112.0",
4
4
  "description": "Vize - High-performance Vue.js toolchain in Rust",
5
5
  "keywords": [
6
6
  "cli",
@@ -49,10 +49,11 @@
49
49
  "access": "public"
50
50
  },
51
51
  "dependencies": {
52
- "@vizejs/native": "0.108.0",
52
+ "@vizejs/native": "0.112.0",
53
53
  "oxc-transform": "0.130.0"
54
54
  },
55
55
  "devDependencies": {
56
+ "@pkl-community/pkl": "0.27.2",
56
57
  "@tsdown/css": "0.22.0",
57
58
  "@types/node": "25.7.0",
58
59
  "tsdown": "0.22.0",
@@ -60,9 +61,14 @@
60
61
  "vite": "npm:@voidzero-dev/vite-plus-core@0.1.21",
61
62
  "vite-plus": "0.1.21"
62
63
  },
63
- "optionalDependencies": {
64
+ "peerDependencies": {
64
65
  "@pkl-community/pkl": "0.27.2"
65
66
  },
67
+ "peerDependenciesMeta": {
68
+ "@pkl-community/pkl": {
69
+ "optional": true
70
+ }
71
+ },
66
72
  "engines": {
67
73
  "node": ">=22"
68
74
  },