Skip to content

Commit b3df1c9

Browse files
authored
Support for TypeScript 5.7 (#187)
1 parent a2ef80e commit b3df1c9

10 files changed

+1180
-409
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
node-version: ['20.x', '22.x', '23.x']
17+
node-version: ['22.x', '23.x']
1818
steps:
1919
- name: Checkout Code
2020
uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
strategy:
4545
matrix:
46-
node-version: ['20.x', '22.x', '23.x']
46+
node-version: ['22.x', '23.x']
4747
steps:
4848
- name: Checkout Code
4949
uses: actions/checkout@v4

.github/workflows/publish-beta.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,20 @@ jobs:
1515
with:
1616
ref: ${{ github.event.pull_request.head.sha }}
1717
- name: Dependency Review
18-
uses: actions/dependency-review-action@v4
18+
uses: actions/dependency-review-action@v4.3.3
1919
with:
2020
allow-licenses: ${{ vars.ALLOW_LICENSES }}
2121
- name: Setup Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: '20.x'
24+
node-version: '22.x'
2525
registry-url: 'https://registry.npmjs.org'
2626
- name: Check Label
2727
uses: checkdigit/github-actions/check-label@main
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
- name: Check Imports
3131
uses: checkdigit/github-actions/check-imports@main
32-
- name: Install latest npm
33-
run: npm install -g npm@latest
3432
- name: Install Dependencies
3533
run: npm ci --ignore-scripts
3634
- name: Audit Signatures

.github/workflows/publish.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ jobs:
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: '20.x'
20+
node-version: '22.x'
2121
registry-url: 'https://registry.npmjs.org'
22-
- name: Install latest npm
23-
run: npm install -g npm@latest
2422
- name: Install Dependencies
2523
run: npm ci --ignore-scripts
2624
- name: Audit Signatures

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins that are supported by the configuration via `peerDependencies`.
2828
### Example `eslint.config.mjs`
2929

3030
```ts
31-
import { default } from '@checkdigit/eslint-config';
31+
export { default } from '@checkdigit/eslint-config';
3232
```
3333

3434
## License

SECURITY.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
These versions of `@checkdigit/eslint-config` are currently being supported with security updates.
66

7-
| Version | Supported |
8-
| ------- | ------------------ |
9-
| \>= 9.x | :white_check_mark: |
10-
| \< 9.0 | :x: |
7+
| Version | Supported |
8+
| -------- | ------------------ |
9+
| \>= 11.x | :white_check_mark: |
10+
| \< 11.0 | :x: |
1111

1212
## Reporting a Vulnerability
1313

0 commit comments

Comments
 (0)