From 31a12c409b1ccdd5b9865ff8078454d3466d88c6 Mon Sep 17 00:00:00 2001 From: Juri Strumpflohner Date: Mon, 11 Dec 2023 20:22:42 +0100 Subject: [PATCH] docs(misc): adjust Nx version number in pkg json mentions (#20698) --- docs/shared/migration/adding-to-existing-project.md | 4 ++-- docs/shared/migration/adding-to-monorepo.md | 2 +- docs/shared/migration/from-turborepo.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/shared/migration/adding-to-existing-project.md b/docs/shared/migration/adding-to-existing-project.md index 8f6eaa0c86..0300dbb72b 100644 --- a/docs/shared/migration/adding-to-existing-project.md +++ b/docs/shared/migration/adding-to-existing-project.md @@ -46,7 +46,7 @@ This process adds `nx` to your `package.json` at the root of your workspace: ... "devDependencies": { ... - "nx": "15.3.0" + "nx": "17.2.0" } } ``` @@ -106,7 +106,7 @@ Here's an example of a `build` and `lint` script being wrapped by Nx: }, "devDependencies": { ... - "nx": "15.3.0" + "nx": "17.2.0" } } ``` diff --git a/docs/shared/migration/adding-to-monorepo.md b/docs/shared/migration/adding-to-monorepo.md index 14313a6179..82bd654fb8 100644 --- a/docs/shared/migration/adding-to-monorepo.md +++ b/docs/shared/migration/adding-to-monorepo.md @@ -42,7 +42,7 @@ This process adds `nx` to your `package.json` at the root of your workspace: ... "devDependencies": { ... - "nx": "15.3.0" + "nx": "17.2.0" } } ``` diff --git a/docs/shared/migration/from-turborepo.md b/docs/shared/migration/from-turborepo.md index 479ae01f55..33e9b9a51d 100644 --- a/docs/shared/migration/from-turborepo.md +++ b/docs/shared/migration/from-turborepo.md @@ -34,7 +34,7 @@ This process adds `nx` to your `package.json` at the root of your workspace: ... "devDependencies": { ... - "nx": "16.8.0" + "nx": "17.2.0" } } ```