Skip to content

Commit

Permalink
[package.json] Move the minimum node requirement to v16.
Browse files Browse the repository at this point in the history
`node` 16 is now the default in GitHub Codespaces.
  • Loading branch information
lgarron committed Jul 19, 2022
1 parent 36927a8 commit 936f250
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-jest": "^28.1.3",
"barely-a-dev-server": "^0.2.6",
"barely-a-dev-server": "^0.3.0",
"esbuild": "^0.14.49",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
Expand All @@ -91,7 +91,7 @@
"jszip"
],
"engines": {
"node": "^14.18 || ^16.13 || >=18"
"node": "^16.13 || >=18"
},
"files": [
"/LICENSE.md",
Expand Down

0 comments on commit 936f250

Please sign in to comment.