Skip to content

Commit 82f8fa1

Browse files
authored
chore: bumped dependencies, dropped node v14 for node v20 (#73)
Signed-off-by: Matteo Collina <[email protected]>
1 parent 8f6c24c commit 82f8fa1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ${{ matrix.os }}
66
strategy:
77
matrix:
8-
node-version: [14.x, 16.x, 18.x]
8+
node-version: [16.x, 18.x, 20.x]
99
os: [ubuntu-latest, windows-latest, macOS-latest]
1010
exclude:
1111
- node-version: 14.x

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"lint:typescript:fix": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts --fix",
1818
"example": "node example/index.js",
1919
"test": "npm run lint && npm run test:types && npm run test:unit ",
20-
"test:unit": "tap --coverage-report=html test/*.js",
20+
"test:unit": "tap test/*.js",
21+
"test:cov": "tap --coverage-report=html test/*.js",
2122
"test:types": "tsd",
2223
"prepare": "husky install"
2324
},
@@ -44,7 +45,7 @@
4445
"@typescript-eslint/parser": "^5.44.0",
4546
"autocannon": "^7.10.0",
4647
"concurrently": "^8.0.1",
47-
"fastify": "^4.10.2",
48+
"fastify": "^4.16.0",
4849
"husky": "^8.0.2",
4950
"lint-staged": "^13.0.4",
5051
"sinon": "^15.0.0",

0 commit comments

Comments
 (0)