Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: drop Node 10 support #48

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 17.x]
node-version: [12.x, 14.x, 16.x, 17.x]
runs-on: ubuntu-latest

steps:
Expand All @@ -56,8 +56,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name:
install
- name: install
run: yarn
- name: run tests
run: yarn test
Expand Down
55 changes: 0 additions & 55 deletions .yarn/releases/yarn-2.4.3.cjs

This file was deleted.

768 changes: 768 additions & 0 deletions .yarn/releases/yarn-3.1.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-2.4.3.cjs
yarnPath: .yarn/releases/yarn-3.1.1.cjs
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@tsd/typescript": "~4.4.4",
"@tsd/typescript": "^4.5.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.2.5",
Expand All @@ -48,7 +48,7 @@
"execa": "^5.1.1",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"typescript": "~4.4.4"
"typescript": "^4.5.5"
},
"peerDependencies": {
"@tsd/typescript": "^3.8.3 || ^4.0.7"
Expand All @@ -57,5 +57,8 @@
"arrowParens": "avoid",
"singleQuote": true
},
"packageManager": "yarn@2.4.3"
"engines": {
"node": ">=12.0.0"
},
"packageManager": "yarn@3.1.1"
}