@skilbjo/config-rc 1.0.45 → 1.0.47
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 +0 -1
- package/.github/dependabot.yml +2 -2
- package/CHANGELOG.md +14 -0
- package/package.json +20 -24
- package/tsconfig.json +1 -0
package/.depcheckrc
CHANGED
package/.github/dependabot.yml
CHANGED
|
@@ -19,7 +19,7 @@ updates:
|
|
|
19
19
|
versioning-strategy: increase
|
|
20
20
|
open-pull-requests-limit: 15
|
|
21
21
|
commit-message:
|
|
22
|
-
prefix:
|
|
22
|
+
prefix: build
|
|
23
23
|
include: scope
|
|
24
24
|
|
|
25
25
|
- package-ecosystem: github-actions
|
|
@@ -30,5 +30,5 @@ updates:
|
|
|
30
30
|
- skilbjo
|
|
31
31
|
open-pull-requests-limit: 5
|
|
32
32
|
commit-message:
|
|
33
|
-
prefix:
|
|
33
|
+
prefix: ci
|
|
34
34
|
include: scope
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.0.47](https://github.com/skilbjo/config-rc/compare/v1.0.46...v1.0.47) (2026-04-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add ts@7 friendly setting ([5878d05](https://github.com/skilbjo/config-rc/commit/5878d05146d3002fd08b30390e9cf65e815350b3))
|
|
7
|
+
|
|
8
|
+
## [1.0.46](https://github.com/skilbjo/config-rc/compare/v1.0.45...v1.0.46) (2026-04-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove expect ([d458550](https://github.com/skilbjo/config-rc/commit/d458550e7799eaa86ccb42507b5ebed95d6dfa0c))
|
|
14
|
+
|
|
1
15
|
## [1.0.45](https://github.com/skilbjo/config-rc/compare/v1.0.44...v1.0.45) (2026-04-07)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,40 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@skilbjo/config-rc",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"description": "eslint, prettier, & tsconfig config",
|
|
4
|
+
"version": "1.0.47",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"main": "index.js",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": "./index.js",
|
|
10
|
-
"./tsconfig.json": "./tsconfig.json",
|
|
11
|
-
"./*": "./*"
|
|
12
|
-
},
|
|
13
7
|
"private": false,
|
|
14
8
|
"repository": {
|
|
15
9
|
"type": "git",
|
|
16
10
|
"url": "git+https://github.com/skilbjo/config-rc.git"
|
|
17
11
|
},
|
|
12
|
+
"author": "skilbjo",
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/skilbjo/config-rc/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/skilbjo/config-rc#readme",
|
|
18
18
|
"scripts": {
|
|
19
19
|
"prepare": "if [ -z \"$GITHUB_ACTIONS\" ]; then npx husky install; fi",
|
|
20
|
+
"exec": "node",
|
|
20
21
|
"eslint": "eslint .",
|
|
21
|
-
"lint": "
|
|
22
|
+
"lint": "eslint",
|
|
23
|
+
"lint:fix": "eslint --fix .",
|
|
22
24
|
"depcheck": "depcheck",
|
|
23
25
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
24
26
|
"prepare-npm": "jq 'del(.publishConfig) | . + { publishConfig: { registry: \"https://registry.npmjs.org/\", access: \"public\", provenance: true } }' package.json >package2.json && mv package2.json package.json"
|
|
25
27
|
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
"eslint",
|
|
28
|
-
"eslintrc"
|
|
29
|
-
],
|
|
30
|
-
"author": "skilbjo",
|
|
31
|
-
"license": "ISC",
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/skilbjo/config-rc/issues"
|
|
34
|
-
},
|
|
35
|
-
"homepage": "https://github.com/skilbjo/config-rc#readme",
|
|
36
28
|
"dependencies": {
|
|
37
|
-
"expect": "30.3.0",
|
|
38
29
|
"@eslint/js": "9.39.2",
|
|
39
30
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
40
31
|
"@tsconfig/node22": "22.0.5",
|
|
@@ -42,23 +33,28 @@
|
|
|
42
33
|
"eslint-config-prettier": "10.1.8",
|
|
43
34
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
44
35
|
"eslint-plugin-import": "2.32.0",
|
|
45
|
-
"eslint-plugin-jest": "29.15.
|
|
36
|
+
"eslint-plugin-jest": "29.15.2",
|
|
46
37
|
"eslint-plugin-n": "17.24.0",
|
|
47
38
|
"eslint-plugin-perfectionist": "5.8.0",
|
|
48
39
|
"eslint-plugin-prettier": "5.5.5",
|
|
49
40
|
"eslint-plugin-security": "4.0.0",
|
|
50
|
-
"globals": "17.
|
|
51
|
-
"prettier": "3.8.
|
|
41
|
+
"globals": "17.5.0",
|
|
42
|
+
"prettier": "3.8.2",
|
|
52
43
|
"typescript": "6.0.2",
|
|
53
|
-
"typescript-eslint": "8.58.
|
|
44
|
+
"typescript-eslint": "8.58.1"
|
|
54
45
|
},
|
|
55
46
|
"devDependencies": {
|
|
56
47
|
"@commitlint/cli": "20.5.0",
|
|
57
48
|
"@commitlint/config-angular": "20.5.0",
|
|
58
|
-
"@types/node": "25.
|
|
49
|
+
"@types/node": "25.6.0",
|
|
59
50
|
"depcheck": "1.4.7",
|
|
60
51
|
"husky": "9.1.7"
|
|
61
52
|
},
|
|
53
|
+
"exports": {
|
|
54
|
+
".": "./index.js",
|
|
55
|
+
"./tsconfig.json": "./tsconfig.json",
|
|
56
|
+
"./*": "./*"
|
|
57
|
+
},
|
|
62
58
|
"commitlint": {
|
|
63
59
|
"extends": [
|
|
64
60
|
"@commitlint/config-angular"
|