@skilbjo/config-rc 1.0.55 → 1.0.56

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,8 +2,10 @@ ignores: [
2
2
  '@commitlint/cli',
3
3
  '@commitlint/config-angular',
4
4
  '@tsconfig/node24',
5
+ '@tsconfig/strictest',
5
6
  'eslint-import-resolver-typescript',
6
7
  'husky',
7
8
 
8
9
  "@typescript/native-preview",
10
+ "@typescript-eslint/parser",
9
11
  ]
@@ -40,7 +40,7 @@ jobs:
40
40
  - name: Set up NPM authentication for dry release
41
41
  run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
42
42
 
43
- - uses: cycjimmy/semantic-release-action@v6
43
+ - uses: cycjimmy/semantic-release-action@v6.0.0
44
44
  id: semantic
45
45
  with:
46
46
  dry_run: true
@@ -65,7 +65,7 @@ jobs:
65
65
  if: ${{ github.actor == 'dependabot[bot]' }}
66
66
 
67
67
  steps:
68
- - uses: dependabot/fetch-metadata@v3.0.0
68
+ - uses: dependabot/fetch-metadata@v3
69
69
  with:
70
70
  github-token: ${{ secrets.GITHUB_TOKEN }}
71
71
  - name: Approve a PR
@@ -12,7 +12,7 @@ defaults:
12
12
  # uses: lhotari/action-upterm@v1 # if ssh is needed
13
13
 
14
14
  jobs:
15
- publish-artifact:
15
+ publish-artefact:
16
16
  runs-on: ubuntu-24.04-arm
17
17
  timeout-minutes: 10
18
18
  if: github.repository == 'skilbjo/config-rc' # Security: Only run on pushes to the main repository
@@ -42,7 +42,7 @@ jobs:
42
42
 
43
43
  - run: make ci
44
44
 
45
- - uses: cycjimmy/semantic-release-action@v6
45
+ - uses: cycjimmy/semantic-release-action@v6.0.0
46
46
  id: semantic
47
47
  with:
48
48
  semantic_version: 24
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v24
1
+ v26
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.55",
4
+ "version": "1.0.56",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "private": false,
@@ -29,7 +29,9 @@
29
29
  "@eslint/js": "10.0.1",
30
30
  "@stylistic/eslint-plugin": "5.10.0",
31
31
  "@tsconfig/node24": "24.0.4",
32
- "eslint": "10.2.1",
32
+ "@tsconfig/strictest": "2.0.8",
33
+ "@typescript-eslint/parser": "8.59.1",
34
+ "eslint": "10.3.0",
33
35
  "eslint-config-prettier": "10.1.8",
34
36
  "eslint-import-resolver-typescript": "4.4.4",
35
37
  "eslint-plugin-import-x": "4.16.2",
@@ -37,17 +39,17 @@
37
39
  "eslint-plugin-perfectionist": "5.9.0",
38
40
  "eslint-plugin-prettier": "5.5.5",
39
41
  "eslint-plugin-security": "4.0.0",
40
- "globals": "17.5.0",
42
+ "globals": "17.6.0",
41
43
  "prettier": "3.8.3",
42
- "typescript-eslint": "8.59.0"
44
+ "typescript-eslint": "8.59.1"
43
45
  },
44
46
  "devDependencies": {
45
- "@commitlint/cli": "20.5.0",
46
- "@commitlint/config-angular": "20.5.0",
47
+ "@commitlint/cli": "20.5.3",
48
+ "@commitlint/config-angular": "20.5.3",
47
49
  "@types/node": "25.6.0",
50
+ "@typescript/native-preview": "7.0.0-dev.20260502.1",
48
51
  "depcheck": "1.4.7",
49
- "husky": "9.1.7",
50
- "@typescript/native-preview": "7.0.0-dev.20260423.1"
52
+ "husky": "9.1.7"
51
53
  },
52
54
  "exports": {
53
55
  ".": "./index.js",
package/tsconfig.json CHANGED
@@ -2,7 +2,10 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "display": "Node 24",
4
4
  "_version": "24.0.0",
5
- "extends": "@tsconfig/node24/tsconfig.json",
5
+ "extends": [
6
+ "@tsconfig/node24/tsconfig.json",
7
+ "@tsconfig/strictest/tsconfig.json"
8
+ ],
6
9
  "compilerOptions": {
7
10
  "module": "ESNext",
8
11
  "moduleResolution": "Bundler",
@@ -15,15 +18,11 @@
15
18
  "outDir": "dist",
16
19
  "declaration": true,
17
20
  "forceConsistentCasingInFileNames": true,
18
- "noFallthroughCasesInSwitch": true,
19
- "noImplicitReturns": true,
21
+ "noUnusedLocals": false,
20
22
  "resolveJsonModule": true,
21
23
  "inlineSources": true,
22
24
  "inlineSourceMap": true,
23
- "strict": true,
24
25
  "isolatedDeclarations": true,
25
- "noUncheckedIndexedAccess": true,
26
- "exactOptionalPropertyTypes": true,
27
26
  "types": [
28
27
  "node"
29
28
  ]