@svelte-check-rs/darwin-x64 0.10.1 → 0.11.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 +8 -0
- package/bin/svelte-check-rs +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ A high-performance, Rust-powered diagnostic engine designed as a drop-in replace
|
|
|
9
9
|
- 🚀 **Fast**: 10-100x faster than `svelte-check` through Rust's zero-cost abstractions and parallel processing
|
|
10
10
|
- ✅ **Accurate**: Matches `svelte-check` diagnostics, including Svelte compiler errors via bun
|
|
11
11
|
- 🔄 **Compatible**: Drop-in CLI replacement, identical output formats
|
|
12
|
+
- 🧩 **Preprocessor-aware**: Resolves effective Vite/Svelte config preprocessors and maps diagnostics back to their original sources
|
|
12
13
|
- 🔧 **Maintainable**: Clean separation of concerns, comprehensive test suite
|
|
13
14
|
|
|
14
15
|
## Installation
|
|
@@ -76,6 +77,13 @@ npm install -D @typescript/native-preview
|
|
|
76
77
|
```
|
|
77
78
|
|
|
78
79
|
Some package managers (for example, bun) may auto-install peer dependencies, but explicit installation is always supported.
|
|
80
|
+
The supported peer range starts at `7.0.0-dev.20260707.2`, whose CLI reports UTF-16 diagnostic columns consistently.
|
|
81
|
+
|
|
82
|
+
Configured preprocessors are resolved with Vite-first precedence: effective options from
|
|
83
|
+
`vite.config.*` are used when vite-plugin-svelte or SvelteKit exposes them; otherwise
|
|
84
|
+
`svelte.config.{js,cjs,mjs,ts,mts}` is loaded. Inline Vite preprocessors and the
|
|
85
|
+
vite-plugin-svelte `configFile` option are supported. Preprocessor and imported config
|
|
86
|
+
dependencies are monitored in watch mode, including files outside the workspace.
|
|
79
87
|
|
|
80
88
|
### CLI Options
|
|
81
89
|
|
package/bin/svelte-check-rs
CHANGED
|
Binary file
|