Skip to content

Commit

Permalink
Drop old node.js versions (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Apr 27, 2024
1 parent afa6561 commit 696fe3c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
contents: read
strategy:
matrix:
node-version: [14, 16, 18]
node-version: [18, 20]
os: [macos-latest, ubuntu-latest, windows-latest]
exclude:
- node-version: 14
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -151,3 +151,4 @@ profile-*
# node clinic
*clinic*
/.idea/
.tap
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

3 changes: 3 additions & 0 deletions .taprc
@@ -0,0 +1,3 @@
timeout: 240
allow-incomplete-coverage: true
reporter: terse
11 changes: 0 additions & 11 deletions .taprc.yaml

This file was deleted.

13 changes: 7 additions & 6 deletions package.json
Expand Up @@ -8,9 +8,11 @@
"scripts": {
"test": "npm run test:types && standard && npm run test:unit",
"test:unit": "tap",
"test:types": "tsc && tsd && ts-node types/tests/test.ts",
"prepare": "husky install"
"test:types": "tsc && tsd"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/sonic-boom.git"
Expand All @@ -31,15 +33,14 @@
},
"homepage": "https://github.com/pinojs/sonic-boom#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^20.1.0",
"fastbench": "^1.0.1",
"husky": "^9.0.6",
"proxyquire": "^2.1.3",
"standard": "^17.0.0",
"tap": "^16.2.0",
"tap": "^18.2.0",
"tsd": "^0.31.0",
"typescript": "^5.0.2",
"ts-node": "^10.8.0"
"typescript": "^5.0.2"
},
"dependencies": {
"atomic-sleep": "^1.0.0"
Expand Down

0 comments on commit 696fe3c

Please sign in to comment.