docs(nx-dev): point blog links to internal blog (#29786)

This commit is contained in:
Philip Fulcher 2025-01-28 12:46:28 -08:00 committed by GitHub
parent 67f12a2d7a
commit 8ca84f762e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 13 additions and 13 deletions

View File

@ -10,7 +10,7 @@ cover_image: /blog/images/2024-11-25/thumbnail.png
We're in the process of adding a new integration between [Nx Cloud](/nx-cloud), our CI product, and [Nx Console](/getting-started/editor-setup) our official plugin for the VSCode and JetBrains IDEs!
Now, once you've [connected your Nx Console to Nx Cloud](https://blog.nrwl.io/nx-console-meets-nx-cloud-d45dc099dc5d), you will have access to a new panel in the console that shows all of your recent CI Pipelines, including those in progress now.
Now, once you've [connected your Nx Console to Nx Cloud](/blog/nx-console-meets-nx-cloud), you will have access to a new panel in the console that shows all of your recent CI Pipelines, including those in progress now.
{% video-player src="/documentation/blog/media/nx-console-pipeline-running.mp4" alt="Nx Console CI Pipeline Execution" autoPlay=true loop=true /%}

View File

@ -1,6 +1,6 @@
# Nx 15.3
[Read the 15.3 release blog post](https://blog.nrwl.io/nx-15-3-standalone-projects-vite-task-graph-and-more-3ed23f7827ed)
[Read the 15.3 release blog post](/blog/nx-15-3-standalone-projects-vite-task-graph-and-more)
{% youtube
src="https://www.youtube.com/embed/KBFQZw5ynFs"

View File

@ -1,6 +1,6 @@
# Nx 15.7
[Read the 15.7 release blog post](https://blog.nrwl.io/nx-15-7-node-support-angular-lts-lockfile-pruning-46f067090711)
[Read the 15.7 release blog post](/blog/nx-15-7-node-support-angular-lts-lockfile-pruning)
{% youtube
src="https://www.youtube.com/embed/IStJODzZSoc"

View File

@ -1,6 +1,6 @@
# Nx 15.8
[Read the 15.8 release blog post](https://blog.nrwl.io/nx-15-8-rust-hasher-nx-console-for-intellij-deno-node-and-storybook-aa2b8585772e)
[Read the 15.8 release blog post](/blog/nx-15-8-rust-hasher-nx-console-for-intellij-deno-node-and-storybook)
{% youtube
src="https://www.youtube.com/embed/4XdHT5Y7zj4"

View File

@ -1,6 +1,6 @@
# Nx 16.5
[Read the 16.5 release blog post](https://blog.nrwl.io/nx-16-5-release-7887a27cb5)
[Read the 16.5 release blog post](/blog/nx-16-5-release)
{% youtube
src="https://www.youtube.com/embed/7XLoLOc3afY"

View File

@ -1,6 +1,6 @@
# Nx 16.8
[Read the 16.8 release blog post](https://blog.nrwl.io/nx-16-8-release-e38e3bb503b5)
[Read the 16.8 release blog post](/blog/nx-16-8-release)
{% youtube
src="https://www.youtube.com/embed/bw8pRh0iC4A"

View File

@ -1,6 +1,6 @@
# Nx 17
Nx 17.0 is here!! From a brand new Vue plugin, enhancements to Module Federation Support ensuring better type safety and a new generator to federate anything, to more consistent generator paths when scaffolding new components. Dive into the details and explore more on what's fresh in Nx 17.0 on [official blog post](https://dev.to/nx/nx-170-has-landed-p60) or watch the video below:
Nx 17.0 is here!! From a brand new Vue plugin, enhancements to Module Federation Support ensuring better type safety and a new generator to federate anything, to more consistent generator paths when scaffolding new components. Dive into the details and explore more on what's fresh in Nx 17.0 on [official blog post](/blog/nx-17-release) or watch the video below:
{% youtube
src="https://www.youtube.com/embed/1Z0iA9K1o8M"

View File

@ -1,6 +1,6 @@
# Nx 17.2
[Read the 17.2 release blog post](https://blog.nrwl.io/nx-17-2-update-b8f23ec42cbb?source=friends_link&sk=b2ea5cd1e07352936556a6ef5431a091)
[Read the 17.2 release blog post](/blog/nx-17-2-release)
{% youtube
src="https://www.youtube.com/embed/cWIFVWKhpHQ"

View File

@ -36,7 +36,7 @@ You can use the `enforce-module-boundaries` rule by adding it to your ESLint rul
| banTransitiveDependencies | _boolean_ | _false_ | Ban import of dependencies that were not specified in the root or project's `package.json` |
| ignoredCircularDependencies | _Array<[string, string]>_ | _[]_ | List of project pairs that should be skipped from `Circular dependencies` checks, including the self-circular dependency check. E.g. `['feature-project-a', 'myapp']`. Project name can be replaced by catch all `*` for more generic matches. |
| checkDynamicDependenciesExceptions | _Array<string>_ | _[]_ | List of imports that should be skipped for `Imports of lazy-loaded libraries forbidden` checks. E.g. `['@myorg/lazy-project/component/*', '@myorg/other-project']` |
| checkNestedExternalImports | _boolean_ | _false_ | Enable to enforce the check for banned external imports in the nested packages. Check [Dependency constraits](#dependency-constraits) for more information |
| checkNestedExternalImports | _boolean_ | _false_ | Enable to enforce the check for banned external imports in the nested packages. Check [Dependency constraints](#dependency-constraints) for more information |
| enforceBuildableLibDependency | _boolean_ | _false_ | Enable to restrict the buildable libs from importing non-buildable libraries |
| depConstraints | _Array<object>_ | _[]_ | List of dependency constraints between projects |

View File

@ -22,7 +22,7 @@ In addition, Nx allows you to incrementally enable [plugins and supporting featu
Here are some examples for Nx:
- [Article: Setup a Monorepo with PNPM and speed it up with Nx](https://dev.to/nx/setup-a-monorepo-with-pnpm-workspaces-and-speed-it-up-with-nx-1eem)
- [Article: Setup a Monorepo with PNPM and speed it up with Nx](/blog/setup-a-monorepo-with-pnpm-workspaces-and-speed-it-up-with-nx)
- [Video: Nx in 100 seconds: Adding Nx to an existing PNPM workspace](https://youtu.be/8X2sGZn_ffY)
#### 2. Understanding your workspace

View File

@ -6,7 +6,7 @@ or new projects, and it also contains a set of our recommended setups for using
can be found on an Nx workspace.
For an in-depth look on this topic, be sure to check out our blog
post [Set up Tailwind CSS with Angular in an Nx workspace](https://medium.com/nrwl/set-up-tailwind-css-with-angular-in-an-nx-workspace-6f039a0f4479).
post [Set up Tailwind CSS with Angular in an Nx workspace](/blog/set-up-tailwind-css-with-angular-in-an-nx-workspace).
## Generating or adding Tailwind CSS support to Angular projects

View File

@ -36,7 +36,7 @@ You can use the `enforce-module-boundaries` rule by adding it to your ESLint rul
| banTransitiveDependencies | _boolean_ | _false_ | Ban import of dependencies that were not specified in the root or project's `package.json` |
| ignoredCircularDependencies | _Array<[string, string]>_ | _[]_ | List of project pairs that should be skipped from `Circular dependencies` checks, including the self-circular dependency check. E.g. `['feature-project-a', 'myapp']`. Project name can be replaced by catch all `*` for more generic matches. |
| checkDynamicDependenciesExceptions | _Array<string>_ | _[]_ | List of imports that should be skipped for `Imports of lazy-loaded libraries forbidden` checks. E.g. `['@myorg/lazy-project/component/*', '@myorg/other-project']` |
| checkNestedExternalImports | _boolean_ | _false_ | Enable to enforce the check for banned external imports in the nested packages. Check [Dependency constraits](#dependency-constraits) for more information |
| checkNestedExternalImports | _boolean_ | _false_ | Enable to enforce the check for banned external imports in the nested packages. Check [Dependency constraints](#dependency-constraints) for more information |
| enforceBuildableLibDependency | _boolean_ | _false_ | Enable to restrict the buildable libs from importing non-buildable libraries |
| depConstraints | _Array<object>_ | _[]_ | List of dependency constraints between projects |

View File

@ -160,4 +160,4 @@ Your plugin and create package will both need to be published to NPM to be useab
## Further Reading
- [Blog post: Create your own create-react-app CLI](https://blog.nrwl.io/create-your-own-create-react-app-cli-d1bf13904e35?sk=a156dddcf85223e7d3e57312955714ea)
- [Blog post: Create your own create-react-app CLI](/blog/create-your-own-create-react-app-cli)