Skip to content

Commit e1f97cb

Browse files
committed
Update dependencies
1 parent a0199c6 commit e1f97cb

File tree

5 files changed

+493
-530
lines changed

5 files changed

+493
-530
lines changed

.github/workflows/node.js.yml

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

1313
strategy:
1414
matrix:
15-
node-version: [18, 20, 22]
15+
node-version: [18, 20, 22, 23]
1616
os: [ubuntu-latest]
1717

1818
runs-on: ${{ matrix.os }}
1919

2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Enable pnpm
23-
run: corepack enable
23+
uses: pnpm/action-setup@v4
2424
- name: Use Node.js ${{ matrix.node-version }}
2525
uses: actions/setup-node@v4
2626
with:
@@ -35,7 +35,7 @@ jobs:
3535
- name: Test with coverage
3636
run: npm run test
3737
- name: Upload coverage to Codecov
38-
uses: codecov/codecov-action@v4
38+
uses: codecov/codecov-action@v5
3939
with:
4040
files: coverage/lcov.info
4141
env_vars: OS,NODE

package.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,22 @@
2222
"author": "Joe Hildebrand <joe-github@cursive.net>",
2323
"license": "MIT",
2424
"devDependencies": {
25-
"@cto.af/eslint-config": "5.0.0",
26-
"@types/node": "22.7.5",
27-
"ava": "6.1.3",
28-
"c8": "10.1.2",
29-
"eslint": "9.12.0",
25+
"@cto.af/eslint-config": "5.1.12",
26+
"@types/node": "22.13.5",
27+
"ava": "6.2.0",
28+
"c8": "10.1.3",
29+
"eslint": "9.21.0",
3030
"eslint-plugin-ava": "15.0.1",
31-
"eslint-plugin-n": "17.11.1",
32-
"typescript": "5.6.3"
31+
"eslint-plugin-n": "17.15.1",
32+
"typescript": "5.7.3"
3333
},
34-
"packageManager": "pnpm@9.12.1",
34+
"pnpm": {
35+
"overrides": {
36+
"fast-glob": "3.3.3",
37+
"foreground-child": "3.3.1"
38+
}
39+
},
40+
"packageManager": "pnpm@10.5.0",
3541
"engines": {
3642
"node": ">=18"
3743
}

pkg/chex-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"license": "MIT",
2323
"dependencies": {
2424
"@cto.af/chex": "workspace:*",
25-
"commander": "12.1.0"
25+
"commander": "13.1.0"
2626
},
2727
"engines": {
2828
"node": ">=18"

pkg/chex/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"author": "Joe Hildebrand <joe-github@cursive.net>",
2323
"license": "MIT",
2424
"devDependencies": {
25-
"@types/node": "22.7.5",
26-
"typescript": "5.6.3"
25+
"@types/node": "22.13.5",
26+
"typescript": "5.7.3"
2727
},
2828
"engines": {
2929
"node": ">=18"

0 commit comments

Comments
 (0)