@jonloucks/variants-ts 1.1.0 → 1.1.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/package.json +14 -10
  2. package/version.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jonloucks/variants-ts",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Node.js Typescript Configuration Library, normalize how configuration is loaded from various sources is retrieved.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -37,7 +37,9 @@
37
37
  "build": "tsc",
38
38
  "test": "tsx --test $(find src -name '*.test.ts')",
39
39
  "test:watch": "tsx --test --watch $(find src -name '*.test.ts')",
40
- "test:coverage": "npx c8 --check-coverage --lines 95 --functions 95 --branches 95 --statements 95 --reporter=lcov npx tsx --test $(find src -name '*.test.ts')",
40
+ "test:coverage": "mkdir -p coverage && tsx --test --experimental-test-coverage --experimental-specifier-resolution=node --test-reporter=lcov $(find src -name '*.test.ts') > coverage/lcov.info",
41
+ "test:coverage-report": "npx badges-ts coverage-report",
42
+ "test:coverage-gate": "npx badges-ts coverage-gate",
41
43
  "lint": "eslint . --ext .ts",
42
44
  "lint:fix": "eslint . --ext .ts --fix",
43
45
  "prepublishOnly": "npm run build",
@@ -71,18 +73,20 @@
71
73
  "engines": {
72
74
  "node": ">=16.0.0"
73
75
  },
76
+ "overrides": {
77
+ "minimatch": ">=10.2.4 <11.0.0"
78
+ },
74
79
  "devDependencies": {
75
- "@jonloucks/badges-ts": "^1.0.3",
76
- "@types/node": "^25.2.1",
77
- "@typescript-eslint/eslint-plugin": "^8.56.0",
78
- "@typescript-eslint/parser": "^8.56.0",
79
- "c8": "^10.1.2",
80
- "eslint": "^9.39.2",
80
+ "@jonloucks/badges-ts": "^1.4.3",
81
+ "@types/node": "^25.5.0",
82
+ "@typescript-eslint/eslint-plugin": "^8.57.2",
83
+ "@typescript-eslint/parser": "^8.57.2",
84
+ "eslint": "^10.1.0",
81
85
  "tsx": "^4.16.2",
82
- "typedoc": "^0.28.17",
86
+ "typedoc": "^0.28.18",
83
87
  "typescript": "^5.9.3"
84
88
  },
85
89
  "dependencies": {
86
- "@jonloucks/contracts-ts": "^2.0.2"
90
+ "@jonloucks/contracts-ts": "^2.0.4"
87
91
  }
88
92
  }
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  // generated file - do not edit
2
2
  export const NAME = "@jonloucks/variants-ts";
3
- export const VERSION = "1.1.0";
3
+ export const VERSION = "1.1.1";
4
4
  //# sourceMappingURL=version.js.map