Skip to content

Commit 2900b04

Browse files
committed
Extend support for Node 22
1 parent 3d97025 commit 2900b04

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@alleyinteractive/block-editor-tools": minor
3+
---
4+
5+
Extending support for Node 22.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
node: [16, 18, 20]
15+
node: [16, 18, 20, 22]
1616
name: "Build and Test: Node ${{ matrix.node }}"
1717
runs-on: ubuntu-latest
1818
# To use Remote Caching, uncomment the next lines and follow the steps below.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Alley Interactive",
66
"license": "GPL-2.0-or-later",
77
"engines": {
8-
"node": ">=16.0.0 <21.0.0",
8+
"node": ">=16.0.0 <22.0.0",
99
"npm": ">=8"
1010
},
1111
"scripts": {

packages/block-editor-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"README.md"
1111
],
1212
"engines": {
13-
"node": ">=16.0.0 <21.0.0",
13+
"node": ">=16.0.0 <22.0.0",
1414
"npm": ">=8.0.0"
1515
},
1616
"scripts": {

plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"private": true,
66
"main": "plugin.php",
77
"engines": {
8-
"node": ">=16.0.0 <21.0.0",
8+
"node": ">=16.0.0 <22.0.0",
99
"npm": ">=8"
1010
},
1111
"browserslist": [

0 commit comments

Comments
 (0)