@sheplu/editorconfig 0.12.1 → 0.12.2
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -218,17 +218,17 @@ Tests live under `test/` and are split by scope:
|
|
|
218
218
|
`node-pty` ships a native binding that npm normally compiles via a postinstall script. This repo sets `ignore-scripts=true` in `.npmrc`, so after `npm install` you need to build it once:
|
|
219
219
|
|
|
220
220
|
```bash
|
|
221
|
-
|
|
221
|
+
node --run rebuild:native
|
|
222
222
|
```
|
|
223
223
|
|
|
224
224
|
Run them with:
|
|
225
225
|
|
|
226
226
|
```bash
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
227
|
+
node --run test # everything
|
|
228
|
+
node --run test:unit # unit only — runs in ~50ms
|
|
229
|
+
node --run test:integration # integration only — spawns the CLI
|
|
230
|
+
node --run test:coverage # coverage with 95% threshold
|
|
231
|
+
node --run lint # oxlint
|
|
232
232
|
```
|
|
233
233
|
|
|
234
234
|
CI runs lint, audit, and the full suite on every PR across Node 24 / 26.
|