@skilbjo/config-rc 1.0.42 → 1.0.44
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/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +15 -0
- package/package.json +2 -2
- package/tsconfig.json +0 -3
|
@@ -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
|
|
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,18 @@
|
|
|
1
|
+
## [1.0.44](https://github.com/skilbjo/config-rc/compare/v1.0.43...v1.0.44) (2026-04-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* promise-retry bug ([de280de](https://github.com/skilbjo/config-rc/commit/de280de3c83d6c546878c15787ca28d2a07ee069))
|
|
7
|
+
|
|
8
|
+
## [1.0.43](https://github.com/skilbjo/config-rc/compare/v1.0.42...v1.0.43) (2026-04-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **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))
|
|
14
|
+
* remove typeRoots, redundant ([6fb34f3](https://github.com/skilbjo/config-rc/commit/6fb34f3831cd846be540545289c16be31c248ab3))
|
|
15
|
+
|
|
1
16
|
## [1.0.42](https://github.com/skilbjo/config-rc/compare/v1.0.41...v1.0.42) (2026-04-03)
|
|
2
17
|
|
|
3
18
|
|
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.
|
|
4
|
+
"version": "1.0.44",
|
|
5
5
|
"description": "eslint, prettier, & tsconfig config",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "index.js",
|
|
@@ -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.
|
|
58
|
+
"@types/node": "25.5.2",
|
|
59
59
|
"depcheck": "1.4.7",
|
|
60
60
|
"husky": "9.1.7"
|
|
61
61
|
},
|