@skilbjo/config-rc 1.0.42 → 1.0.45

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/.depcheckrc CHANGED
@@ -2,7 +2,7 @@ ignores: [
2
2
  '@commitlint/cli',
3
3
  '@commitlint/config-angular',
4
4
  '@tsconfig/node22',
5
- '@types/jest',
5
+ 'expect',
6
6
  'eslint-import-resolver-typescript',
7
7
  'husky'
8
8
  ]
@@ -68,5 +68,5 @@ jobs:
68
68
  - name: Publish to NPM
69
69
  if: steps.semantic.outputs.new_release_published == 'true'
70
70
  run: |
71
- npm install -g npm@latest # Ensure npm 11.5.1+ for trusted publishing
71
+ npm install -g npm@~11.10.0 # https://github.com/npm/cli/issues/9151#issuecomment-4131466208
72
72
  npm publish
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [1.0.45](https://github.com/skilbjo/config-rc/compare/v1.0.44...v1.0.45) (2026-04-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove jest ([f060f5d](https://github.com/skilbjo/config-rc/commit/f060f5d2582602952c8e7da0590b6e58dba1a056))
7
+
8
+ ## [1.0.44](https://github.com/skilbjo/config-rc/compare/v1.0.43...v1.0.44) (2026-04-05)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * promise-retry bug ([de280de](https://github.com/skilbjo/config-rc/commit/de280de3c83d6c546878c15787ca28d2a07ee069))
14
+
15
+ ## [1.0.43](https://github.com/skilbjo/config-rc/compare/v1.0.42...v1.0.43) (2026-04-05)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps-dev:** bump @types/node from 25.5.0 to 25.5.2 ([#517](https://github.com/skilbjo/config-rc/issues/517)) ([9772bcd](https://github.com/skilbjo/config-rc/commit/9772bcd78e7323e3fbc8a651b2f796dad1af7e46))
21
+ * remove typeRoots, redundant ([6fb34f3](https://github.com/skilbjo/config-rc/commit/6fb34f3831cd846be540545289c16be31c248ab3))
22
+
1
23
  ## [1.0.42](https://github.com/skilbjo/config-rc/compare/v1.0.41...v1.0.42) (2026-04-03)
2
24
 
3
25
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.42",
4
+ "version": "1.0.45",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "type": "module",
7
7
  "main": "index.js",
@@ -34,10 +34,10 @@
34
34
  },
35
35
  "homepage": "https://github.com/skilbjo/config-rc#readme",
36
36
  "dependencies": {
37
+ "expect": "30.3.0",
37
38
  "@eslint/js": "9.39.2",
38
39
  "@stylistic/eslint-plugin": "5.10.0",
39
40
  "@tsconfig/node22": "22.0.5",
40
- "@types/jest": "30.0.0",
41
41
  "eslint": "9.39.2",
42
42
  "eslint-config-prettier": "10.1.8",
43
43
  "eslint-import-resolver-typescript": "4.4.4",
@@ -55,7 +55,7 @@
55
55
  "devDependencies": {
56
56
  "@commitlint/cli": "20.5.0",
57
57
  "@commitlint/config-angular": "20.5.0",
58
- "@types/node": "25.5.0",
58
+ "@types/node": "25.5.2",
59
59
  "depcheck": "1.4.7",
60
60
  "husky": "9.1.7"
61
61
  },
package/tsconfig.json CHANGED
@@ -20,11 +20,7 @@
20
20
  "inlineSources": true,
21
21
  "inlineSourceMap": true,
22
22
  "strict": true,
23
- "typeRoots": [
24
- "./node_modules/@types"
25
- ],
26
23
  "types": [
27
- "jest",
28
24
  "node"
29
25
  ]
30
26
  },