Skip to content

Commit f2f0733

Browse files
committed
Update dependencies
1 parent be51ad2 commit f2f0733

File tree

4 files changed

+429
-455
lines changed

4 files changed

+429
-455
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [18.x, 20.x, 22.x]
14+
node-version: [18.x, 20.x, 22.x, 23.x]
1515
os: [ubuntu-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- uses: actions/checkout@v4
19-
- run: corepack enable
19+
- uses: pnpm/action-setup@v4
2020
- name: Use Node.js ${{ matrix.node-version }}
2121
uses: actions/setup-node@v4
2222
with:
@@ -27,6 +27,6 @@ jobs:
2727
- name: Test
2828
run: npm run build
2929
- name: Upload coverage reports to Codecov
30-
uses: codecov/codecov-action@v4
30+
uses: codecov/codecov-action@v5
3131
with:
3232
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
id-token: write
1111
steps:
1212
- uses: actions/checkout@v4
13-
- run: corepack enable
13+
- uses: pnpm/action-setup@v4
1414
- uses: actions/setup-node@v4
1515
with:
1616
node-version: '20.x'

package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,28 @@
2727
"author": "Joe Hildebrand <[email protected]>",
2828
"license": "MIT",
2929
"devDependencies": {
30-
"@cto.af/eslint-config": "4.1.6",
31-
"@types/node": "22.5.4",
32-
"c8": "10.1.2",
33-
"eslint": "9.10.0",
30+
"@cto.af/eslint-config": "5.1.12",
31+
"@types/node": "22.13.5",
32+
"c8": "10.1.3",
33+
"eslint": "9.21.0",
3434
"eslint-plugin-mocha": "10.5.0",
35-
"mocha": "10.7.3",
36-
"typedoc": "0.26.7",
37-
"typescript": "5.5.4"
35+
"mocha": "11.1.0",
36+
"typedoc": "0.27.9",
37+
"typescript": "5.7.3"
3838
},
3939
"dependencies": {
4040
"@cto.af/unicode-trie": "2.0.1",
4141
"ansi-regex": "6.1.0",
4242
"emoji-regex": "10.4.0"
4343
},
44-
"packageManager": "[email protected]",
44+
"pnpm": {
45+
"overrides": {
46+
"chokidar": "4.0.3",
47+
"fast-glob": "3.3.3",
48+
"foreground-child": "3.3.1"
49+
}
50+
},
51+
"packageManager": "[email protected]",
4552
"engines": {
4653
"node": ">= 18"
4754
}

0 commit comments

Comments
 (0)