Skip to content

Commit

Permalink
feat: drop support for Node.js 10.x
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Going forward, `tedious` will only support Node.js v12 or newer.
  • Loading branch information
arthurschreiber committed Aug 5, 2021
1 parent 3ecb650 commit 6bd814c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x]
fail-fast: false

services:
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ version: "{build}"

environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"
- nodejs_version: "16"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/tediousjs/tedious.git"
},
"engines": {
"node": ">= 10"
"node": ">= 12"
},
"publishConfig": {
"tag": "next"
Expand Down

0 comments on commit 6bd814c

Please sign in to comment.