Skip to content

Commit

Permalink
break: require Node 10.x minimum;
Browse files Browse the repository at this point in the history
- Node 8.x is already End of Life (2019-12-31)
  • Loading branch information
lukeed committed May 23, 2020
1 parent ae5e905 commit 19061be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [8, 10, 12]
nodejs: [10, 12]
steps:
- uses: actions/checkout@master
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/sirv-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"url": "https://lukeed.com"
},
"engines": {
"node": ">= 6"
"node": ">= 10"
},
"dependencies": {
"console-clear": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/sirv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "https://lukeed.com"
},
"engines": {
"node": ">= 6"
"node": ">= 10"
},
"dependencies": {
"@polka/url": "^1.0.0-next.9",
Expand Down

0 comments on commit 19061be

Please sign in to comment.