diff --git a/docs/pages/docs/providers/node.md b/docs/pages/docs/providers/node.md index 8ecf5f037..2370f7008 100644 --- a/docs/pages/docs/providers/node.md +++ b/docs/pages/docs/providers/node.md @@ -21,17 +21,17 @@ The Node provider sets the following environment variables: The following major versions are available -- `14` - `16` - `18` (Default) - `20` +- `22` The version can be overridden by - Setting the `NIXPACKS_NODE_VERSION` environment variable - Specifying the `engines.node` field in `package.json` -Only a major version can be specified. For example, `14.x` or `14`. +Only a major version can be specified. For example, `18.x` or `20`. **Node Canvas** @@ -91,11 +91,11 @@ You can specify `cacheDirectories` in `package.json`. Each directory that is pro Nixpacks has first class support for [Corepack](https://nodejs.org/api/corepack.html), an experimental tool that enables installing specific versions of Node based package managers. -For example, To install a specific version of PNPM, add a `packageManager` key to your `package.json` file +For example, To install the latest version of PNPM, add a `packageManager` key to your `package.json` file ```json { - "packageManager": "pnpm@7.7.0" + "packageManager": "pnpm@latest" } ``` diff --git a/docs/pages/docs/providers/php.md b/docs/pages/docs/providers/php.md index 365f6bde6..6f67805ac 100644 --- a/docs/pages/docs/providers/php.md +++ b/docs/pages/docs/providers/php.md @@ -17,7 +17,6 @@ If a `NIXPACKS_PHP_FALLBACK_PATH` variable is passed, that will be used as a fal The following PHP versions are available -- `8.0` - `8.1` - `8.2` (Default) - `8.3` diff --git a/docs/pages/docs/providers/python.md b/docs/pages/docs/providers/python.md index 1e0e0460c..950a24350 100644 --- a/docs/pages/docs/providers/python.md +++ b/docs/pages/docs/providers/python.md @@ -15,12 +15,12 @@ Python is detected if any of the following files are found The following Python versions are available -- `3.11` -- `3.10` -- `3.9` -- `3.8` (Default) -- `3.7` - `2.7` +- `3.8` +- `3.9` +- `3.10` +- `3.11` (Default) +- `3.12` The version can be overridden by