diff --git a/docs/blog/2025-05-05-nx-21-release.md b/docs/blog/2025-05-05-nx-21-release.md index 0b4c165ced..2c411306cd 100644 --- a/docs/blog/2025-05-05-nx-21-release.md +++ b/docs/blog/2025-05-05-nx-21-release.md @@ -16,8 +16,8 @@ This article is part of the Nx 21 Launch Week series: - **Nx 21 Release: Continuous tasks and Terminal UI lead the way** - [Introducing Migrate UI in Nx Console](/blog/migrate-ui) - [New and Improved Module Federation Experience](/blog/improved-module-federation) -- Continuous tasks are a huge DX improvement -- A New UI For The Humble Terminal +- [Continuous tasks are a huge DX improvement](/blog/nx-21-continuous-tasks) +- [A New UI For The Humble Terminal](/blog/nx-21-terminal-ui) {% /callout %} diff --git a/docs/blog/2025-05-07-migrate-ui.md b/docs/blog/2025-05-07-migrate-ui.md index fab6d27f2e..dab92b59bb 100644 --- a/docs/blog/2025-05-07-migrate-ui.md +++ b/docs/blog/2025-05-07-migrate-ui.md @@ -16,8 +16,8 @@ This article is part of the Nx 21 Launch Week series: - [Nx 21 Release: Continuous tasks and Terminal UI lead the way](/blog/nx-21-release) - **Introducing Migrate UI in Nx Console** - [New and Improved Module Federation Experience](/blog/improved-module-federation) -- Continuous tasks are a huge DX improvement -- A New UI For The Humble Terminal +- [Continuous tasks are a huge DX improvement](/blog/nx-21-continuous-tasks) +- [A New UI For The Humble Terminal](/blog/nx-21-terminal-ui) {% /callout %} diff --git a/docs/blog/2025-05-08-improved-module-federation.md b/docs/blog/2025-05-08-improved-module-federation.md index aa39584969..aa92794f45 100644 --- a/docs/blog/2025-05-08-improved-module-federation.md +++ b/docs/blog/2025-05-08-improved-module-federation.md @@ -13,8 +13,8 @@ pinned: true - [Nx 21 Release: Continuous tasks and Terminal UI lead the way](/blog/nx-21-release) - [Introducing Migrate UI in Nx Console](/blog/migrate-ui) - **New and Improved Module Federation Experience** -- Continuous tasks are a huge DX improvement -- A New UI For The Humble Terminal +- [Continuous tasks are a huge DX improvement](/blog/nx-21-continuous-tasks) +- [A New UI For The Humble Terminal](/blog/nx-21-terminal-ui) {% /callout %} diff --git a/docs/blog/2025-05-09-terminal-ui.md b/docs/blog/2025-05-09-terminal-ui.md index ba0ba37b7b..7b7480758a 100644 --- a/docs/blog/2025-05-09-terminal-ui.md +++ b/docs/blog/2025-05-09-terminal-ui.md @@ -33,7 +33,7 @@ Great question! Why spend time on a terminal? Well, the terminal is the starting Let's first look at how the terminal behaves in Nx 20 and below. In a project with multiple packages, if you run `nx run-many`, what you'll first notice is that you get all the output from any continuous tasks mixed together in one giant stream. This is very typical in most terminal programs, but with monorepos it's not ideal. For instance, let's say we have a build error in one of our projects: -{% video-player src="/documentation/blog/media/2025-05-09/old-tui.mp4" alt="Showing the previous terminal experience for Nx" autoPlay=true loop=true /%} +{% video-player src="/documentation/blog/media/2025-05-07/old-tui.mp4" alt="Showing the previous terminal experience for Nx" autoPlay=true loop=true /%} It might be hard to notice that we had the error if we have multiple tasks being run, so unless we scroll up, we could miss it. This might sound trivial, but it's an annoyance that doesn't have to happen. It's also difficult to separate tasks that are continuous and those that have an ending.