@skilbjo/config-rc 1.0.41 → 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 +22 -0
- package/index.js +2 -2
- package/package.json +3 -3
- package/tsconfig.json +3 -5
|
@@ -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,25 @@
|
|
|
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
|
+
|
|
16
|
+
## [1.0.42](https://github.com/skilbjo/config-rc/compare/v1.0.41...v1.0.42) (2026-04-03)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* prepare for ts@7 ([fe26110](https://github.com/skilbjo/config-rc/commit/fe26110497f74c3a51816b32725ebc03d1351e47))
|
|
22
|
+
|
|
1
23
|
## [1.0.41](https://github.com/skilbjo/config-rc/compare/v1.0.40...v1.0.41) (2026-04-02)
|
|
2
24
|
|
|
3
25
|
|
package/index.js
CHANGED
|
@@ -94,9 +94,9 @@ const config = tseslint.config(
|
|
|
94
94
|
{
|
|
95
95
|
files: ['**/*.ts', '**/*.tsx'],
|
|
96
96
|
languageOptions: {
|
|
97
|
-
parser: tseslint.parser,
|
|
98
97
|
parserOptions: {
|
|
99
|
-
|
|
98
|
+
projectService: true,
|
|
99
|
+
tsconfigRootDir: import.meta.dirname,
|
|
100
100
|
},
|
|
101
101
|
},
|
|
102
102
|
extends: [
|
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
|
},
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
|
-
"node": ">=22.
|
|
68
|
+
"node": ">=22.16.0"
|
|
69
69
|
},
|
|
70
70
|
"publishConfig": {
|
|
71
71
|
"registry": "https://registry.npmjs.org/",
|
package/tsconfig.json
CHANGED
|
@@ -6,10 +6,11 @@
|
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"module": "ESNext",
|
|
8
8
|
"moduleResolution": "Bundler",
|
|
9
|
-
"target": "
|
|
9
|
+
"target": "ES2025",
|
|
10
10
|
"lib": [
|
|
11
|
-
"
|
|
11
|
+
"ES2025"
|
|
12
12
|
],
|
|
13
|
+
"erasableSyntaxOnly": true,
|
|
13
14
|
"outDir": "dist",
|
|
14
15
|
"declaration": true,
|
|
15
16
|
"forceConsistentCasingInFileNames": true,
|
|
@@ -19,9 +20,6 @@
|
|
|
19
20
|
"inlineSources": true,
|
|
20
21
|
"inlineSourceMap": true,
|
|
21
22
|
"strict": true,
|
|
22
|
-
"typeRoots": [
|
|
23
|
-
"./node_modules/@types"
|
|
24
|
-
],
|
|
25
23
|
"types": [
|
|
26
24
|
"jest",
|
|
27
25
|
"node"
|