vize 0.43.0 → 0.45.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 +7 -0
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -90,11 +90,18 @@ The npm CLI currently applies shared config to the `lint` command. You can overr
90
90
  vize # Compile ./**/*.vue to ./dist
91
91
  vize build src/**/*.vue -o out # Custom input/output
92
92
  vize build --ssr # SSR mode
93
+ vize build --profile # Parse, transform, codegen, and I/O profile
93
94
  vize fmt --check # Check formatting
95
+ vize fmt --check --profile # Formatter timing profile
94
96
  vize lint --fix # Auto-fix lint issues
97
+ vize lint --profile # Rule hook, Croquis, and type-aware timing profile
95
98
  vize check --strict # Strict type checking
99
+ vize check --profile src # Virtual TS, Croquis, and Corsa timing profile
96
100
  ```
97
101
 
102
+ Profile output includes hot files and internal operation timings, so compiler, linter, typecheck,
103
+ Croquis, and Corsa costs are visible in the same report style.
104
+
98
105
  ## Alternative Installation
99
106
 
100
107
  If npm installation fails, you can install via Cargo:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vize",
3
- "version": "0.43.0",
3
+ "version": "0.45.0",
4
4
  "description": "Vize - High-performance Vue.js toolchain in Rust",
5
5
  "keywords": [
6
6
  "cli",
@@ -53,14 +53,14 @@
53
53
  "vite-plus": "latest"
54
54
  },
55
55
  "optionalDependencies": {
56
- "@vizejs/native-darwin-arm64": "0.43.0",
57
- "@vizejs/native-darwin-x64": "0.43.0",
58
- "@vizejs/native-linux-arm64-gnu": "0.43.0",
59
- "@vizejs/native-linux-arm64-musl": "0.43.0",
60
- "@vizejs/native-linux-x64-gnu": "0.43.0",
61
- "@vizejs/native-linux-x64-musl": "0.43.0",
62
- "@vizejs/native-win32-arm64-msvc": "0.43.0",
63
- "@vizejs/native-win32-x64-msvc": "0.43.0"
56
+ "@vizejs/native-darwin-arm64": "0.45.0",
57
+ "@vizejs/native-darwin-x64": "0.45.0",
58
+ "@vizejs/native-linux-arm64-gnu": "0.45.0",
59
+ "@vizejs/native-linux-arm64-musl": "0.45.0",
60
+ "@vizejs/native-linux-x64-gnu": "0.45.0",
61
+ "@vizejs/native-linux-x64-musl": "0.45.0",
62
+ "@vizejs/native-win32-arm64-msvc": "0.45.0",
63
+ "@vizejs/native-win32-x64-msvc": "0.45.0"
64
64
  },
65
65
  "engines": {
66
66
  "node": ">=18"