svelte-check-rs 0.3.7 → 0.4.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 +11 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,6 +19,16 @@ A high-performance, Rust-powered diagnostic engine designed as a drop-in replace
|
|
|
19
19
|
npm install -D svelte-check-rs
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
Postinstall downloads the binary. If lifecycle scripts are blocked, trust the package:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# pnpm
|
|
26
|
+
pnpm --config.ignore-scripts=false i -D svelte-check-rs
|
|
27
|
+
|
|
28
|
+
# bun
|
|
29
|
+
bun pm trust svelte-check-rs
|
|
30
|
+
```
|
|
31
|
+
|
|
22
32
|
Then add to your package.json scripts:
|
|
23
33
|
|
|
24
34
|
```json
|
|
@@ -76,7 +86,7 @@ svelte-check-rs --output human-verbose
|
|
|
76
86
|
| `--watch` | Watch mode |
|
|
77
87
|
| `--preserveWatchOutput` | Don't clear screen in watch mode |
|
|
78
88
|
| `--fail-on-warnings` | Exit with error on warnings |
|
|
79
|
-
| `--diagnostic-sources <LIST>` | Which diagnostics: `js`, `svelte
|
|
89
|
+
| `--diagnostic-sources <LIST>` | Which diagnostics: `js`, `svelte` |
|
|
80
90
|
| `--ignore <PATTERNS>` | Glob patterns to ignore |
|
|
81
91
|
|
|
82
92
|
## Project Structure
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "svelte-check-rs",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.4.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.4.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/pheuter/svelte-check-rs/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/pheuter/svelte-check-rs/releases/download/v0.4.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"svelte-check-rs": "run-svelte-check-rs.js"
|
|
5
5
|
},
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"zipExt": ".tar.xz"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
|
-
"version": "0.
|
|
86
|
+
"version": "0.4.0",
|
|
87
87
|
"volta": {
|
|
88
88
|
"node": "18.14.1",
|
|
89
89
|
"npm": "9.5.0"
|