Skip to content

Commit

Permalink
feat: add node 20 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ernscht committed Sep 23, 2023
1 parent 6835622 commit 3332a1f
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Test - ${{ matrix.platform }} - Node v${{ matrix.node-version }}
strategy:
matrix:
node-version: [ 16.x, 18.x ]
node-version: [ 16.x, 18.x, 20.x ]
platform: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": "merkle-open/generator-nitro",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"workspaces": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-nitro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": "merkle-open/generator-nitro",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"main": "generators/app/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": "merkle-open/generator-nitro",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro-exporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": "merkle-open/generator-nitro",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro-gulp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project-new/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project-nitro-twig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project-nitro-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project-nitro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project-prod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "The Nitro Team",
"engines": {
"node": ">=16.13.0 <19",
"node": ">=16.13.0 <21",
"npm": ">=8.1.0 <10"
},
"scripts": {
Expand Down

0 comments on commit 3332a1f

Please sign in to comment.