Skip to content

Commit d67acef

Browse files
authored
Merge pull request #584 from evolvedbinary/update/node-22.16.0
[refactor] bump NodeJS version to 22.16.0
2 parents 8616d00 + 22417bf commit d67acef

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
parameters:
44
node-image-tag:
55
type: string
6-
default: "20.10.0"
6+
default: "22.16.0"
77
resource-class:
88
type: string
99
default: "medium"
@@ -99,7 +99,7 @@ jobs:
9999
run-cypress:
100100
executor:
101101
name: cypress/default
102-
node-version: "20.10.0"
102+
node-version: "22.16.0"
103103
steps:
104104
- run: "corepack enable"
105105
- cypress/install:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ If this port is already in use, `parcel` will assign a random port that you can
102102

103103
For development, you will need Node.js and a node package manager, like Yarn, to be installed in your environment.
104104

105-
* Minimal Node version: v20.10.0
105+
* Minimal Node version: v22.16.0
106106
* Optional: This project uses Yarn as its build system. Although we don't support it, if you prefer, it should also be possible to use npm instead of Yarn. The version of Yarn that we have used is v4.2.2.
107107

108108
### Installation

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"publish": "yarn workspace @evolvedbinary/prosemirror-lwdita-localization npm publish --access public && yarn workspace @evolvedbinary/prosemirror-lwdita npm publish --access public"
4141
},
4242
"engines": {
43-
"node": ">=20.10.0 <21",
43+
"node": ">=22.16.0 <23",
4444
"yarn": ">=4.2.2"
4545
},
4646
"workspaces": [

packages/prosemirror-lwdita-backend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Our instructions are for the following suggested environment:
4343
* [Ubuntu](https://www.ubuntu.com) Linux
4444
* [nginx](https://nginx.org/en/) Web Server
4545
* [Let's Encrypt](https://letsencrypt.org/) and [Certbot](https://certbot.eff.org/) for TLS/SSL Encryption
46-
* [Node.js 20](https://nodejs.org)
46+
* [Node.js 22](https://nodejs.org)
4747

4848
We assume that you have a server running Ubuntu Linux with a public IPv4 or IPv6 address, with nginx, Let's Encrypt, and Certbot already installed. If not, briefly, you need to do something like the following:
4949

packages/prosemirror-lwdita-backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dist": "webpack"
1717
},
1818
"engines": {
19-
"node": ">=20.1.0 <21",
19+
"node": ">=22.16.0 <23",
2020
"yarn": ">=4.2.2"
2121
},
2222
"repository": {

packages/prosemirror-lwdita-localization/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"engines": {
8-
"node": ">=20.1.0 <21",
8+
"node": ">=22.16.0 <23",
99
"yarn": ">=4.2.2"
1010
},
1111
"scripts": {

packages/prosemirror-lwdita/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"engines": {
8-
"node": ">=20.1.0 <21",
8+
"node": ">=22.16.0 <23",
99
"yarn": ">=4.2.2"
1010
},
1111
"scripts": {

0 commit comments

Comments
 (0)