Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.14
22.15
8 changes: 4 additions & 4 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This section lists the minimum requirements for setting up a local development e

Docker installation depends on your OS. [Please follow their official instructions](https://docs.docker.com/get-docker/). Please always use the latest possible version.

##### Node.js 16 (LTS)
##### Node.js 22.15 (LTS)

Node.js is used in the build process of the Parse.ly plugin. If it's not already installed on your system, you can [visit the Node.js website and install the latest Long Term Support (LTS) version](https://nodejs.org/). If you use [nvm](https://github.com/nvm-sh/nvm) to manage node versions, you can run:

Expand All @@ -59,9 +59,9 @@ nvm install
nvm use
```

##### npm 7
##### npm 10.9.2

Node 16 ships with npm version 7, so you don't need to update it manually. In case you don't have the latest version, you can run:
If you need to update npm, you can run:

```
npm i -g npm
Expand All @@ -77,7 +77,7 @@ There are multiple ways to install PHP on your operating system. You can check o

The Parse.ly plugin includes several packages that require Composer, the PHP package manager. You can view the [composer.json](https://github.com/Parsely/wp-parsely/blob/develop/composer.json) file for a full list of packages. You can install Composer through Homebrew on macOS: `brew install composer`. If you don't have access to Homebrew you can view instructions for how to install Composer on the [Composer website](https://getcomposer.org/download/).

##### WordPress 5.2
##### WordPress 6.3

You don't need to install WordPress if you use the provided, Docker-based wp-env.

Expand Down
4 changes: 2 additions & 2 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 @@ -20,8 +20,8 @@
"url": "https://github.com/Parsely/wp-parsely/issues"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=10.9.0"
"node": ">=22.15.0",
"npm": ">=10.9.2"
},
"directories": {
"test": "tests"
Expand Down
Loading