@sheplu/editorconfig 0.10.0 → 0.10.1

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 +1 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -178,6 +178,7 @@ Run them with:
178
178
  npm test # everything
179
179
  npm run test:unit # unit only — runs in ~50ms
180
180
  npm run test:integration # integration only — spawns the CLI
181
+ npm run test:coverage. # coverage with 95% threshold
181
182
  npm run lint # oxlint
182
183
  ```
183
184
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sheplu/editorconfig",
3
- "version": "0.10.0",
4
- "description": "",
3
+ "version": "0.10.1",
4
+ "description": "CLI to generate and validate a consistent .editorconfig across your projects",
5
5
  "main": "index.js",
6
6
  "files": [
7
7
  "index.js",
@@ -10,6 +10,7 @@
10
10
  "scripts": {
11
11
  "lint": "oxlint",
12
12
  "test": "node --test",
13
+ "test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=95 --test-coverage-branches=95 --test-coverage-functions=95",
13
14
  "test:unit": "node --test 'test/unit/*.test.js'",
14
15
  "test:integration": "node --test 'test/integration/*.test.js'"
15
16
  },