From ceabe46e89a798cd958d79f1798c5efb511fc88a Mon Sep 17 00:00:00 2001 From: Richard Roozenboom Date: Mon, 8 May 2023 15:25:55 +0200 Subject: [PATCH] docs(core): update link to nrwl/nx-incremental-large-repo (#16862) --- docs/shared/incremental-builds.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/shared/incremental-builds.md b/docs/shared/incremental-builds.md index 0cb593badde99..56a4596f16728 100644 --- a/docs/shared/incremental-builds.md +++ b/docs/shared/incremental-builds.md @@ -35,9 +35,9 @@ In an incremental build scenario, when building the app, all it's dependencies n It is costly to rebuild all the buildable libraries from scratch every time you want to serve the app. That's why the Nx computation caching is so important. The caching allows us to only rebuild a small subset of the libraries, which results in much better performance. -If we can share the cache with our teammates, we can get a much better dev experience. For instance, [this repo](https://github.com/nx/nx-incremental-large-repo) has a large application, where `nx serve` takes just a few seconds. +If we can share the cache with our teammates, we can get a much better dev experience. For instance, [this repo](https://github.com/nrwl/nx-incremental-large-repo) has a large application, where `nx serve` takes just a few seconds. -{% github-repository url="https://github.com/nx/nx-incremental-large-repo" /%} +{% github-repository url="https://github.com/nrwl/nx-incremental-large-repo" /%} ![comparison: webpack vs incremental build](/shared/incremental-build-webpack-vs-incremental.png)