Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PM2 is constantly assailed by [more than 1800 tests](https://github.com/Unitech/

Official website: [https://pm2.keymetrics.io/](https://pm2.keymetrics.io/)

Works on Linux (stable) & macOS (stable) & Windows (stable). All Node.js versions are supported starting Node.js 12.X and Bun since v1
Works on Linux (stable) & macOS (stable) & Windows (stable). All Node.js versions are supported starting Node.js 22.x and Bun since v1


## Installing PM2
Expand Down
6 changes: 3 additions & 3 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 @@ -3,7 +3,7 @@
"preferGlobal": true,
"version": "6.0.13",
"engines": {
"node": ">=16.0.0"
"node": ">=22.0.0"
},
"directories": {
"bin": "./bin",
Expand Down
4 changes: 2 additions & 2 deletions packager/alpine/pm2/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ pkgdesc="PM2 CE: Production Process Manager for Node.js apps with a built-in Loa
url="http://pm2.io"
arch="noarch"
license="GNU-AGPL-3.0"
depends="nodejs"
makedepends="make nodejs-npm"
depends="nodejs>=22"
makedepends="make nodejs-npm>=22"
install="" # "$pkgname.pre-install $pkgname.post-install"
subpackages="" # "$pkgname-dev $pkgname-doc"
source="
Expand Down
2 changes: 1 addition & 1 deletion packager/build-deb-rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fpm --input-type dir --chdir $PACKAGE_TMPDIR \
--before-remove packager/rhel/prerm \
--after-remove packager/rhel/postrm \
--architecture noarch \
--depends nodejs \
--depends "nodejs >= 22.0.0" \
--output-type rpm .

##### Adapt files for Debian-like distro
Expand Down
4 changes: 2 additions & 2 deletions packager/debian/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pm2
Version: __VERSION__
Depends: nodejs (>= 6.12.2)
Conflicts: nodejs (<< 0.12.0)
Depends: nodejs (>= 22.0.0)
Conflicts: nodejs (<< 22.0.0)
Section: devel
Priority: optional
Architecture: all
Expand Down