From 23e6029449507a560f7a89b86a48bacb630fd3d1 Mon Sep 17 00:00:00 2001 From: Isaac Mann Date: Mon, 19 Aug 2024 21:14:34 -0400 Subject: [PATCH] docs(core): update Nx tag line (#27481) Update tag line everywhere (cherry picked from commit 08536905a2ce65457da1eeb36f5318cb897b5e4b) --- README.md | 2 +- nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx | 4 ++-- .../src/lib/package-schema-viewer.tsx | 2 +- nx-dev/nx-dev/pages/_app.tsx | 4 ++-- nx-dev/nx-dev/pages/index.tsx | 2 +- packages-legacy/angular/README.md | 2 +- packages-legacy/cypress/README.md | 2 +- packages-legacy/detox/README.md | 2 +- packages-legacy/devkit/README.md | 2 +- packages-legacy/esbuild/README.md | 2 +- packages-legacy/eslint-plugin-nx/README.md | 2 +- packages-legacy/expo/README.md | 2 +- packages-legacy/express/README.md | 2 +- packages-legacy/jest/README.md | 2 +- packages-legacy/js/README.md | 2 +- packages-legacy/linter-nx/README.md | 2 +- packages-legacy/linter/README.md | 2 +- packages-legacy/nest/README.md | 2 +- packages-legacy/next/README.md | 2 +- packages-legacy/node/README.md | 2 +- packages-legacy/nx-plugin/README.md | 2 +- packages-legacy/react-native/README.md | 2 +- packages-legacy/react/README.md | 2 +- packages-legacy/rollup/README.md | 2 +- packages-legacy/storybook/README.md | 2 +- packages-legacy/vite/README.md | 2 +- packages-legacy/web/README.md | 2 +- packages-legacy/webpack/README.md | 2 +- packages-legacy/workspace/README.md | 2 +- packages/angular/README.md | 2 +- packages/create-nx-plugin/README.md | 2 +- packages/create-nx-workspace/README.md | 2 +- packages/cypress/README.md | 2 +- packages/detox/README.md | 2 +- packages/devkit/README.md | 2 +- packages/esbuild/README.md | 2 +- packages/eslint-plugin/README.md | 2 +- packages/eslint/README.md | 2 +- packages/expo/README.md | 2 +- packages/express/README.md | 2 +- packages/gradle/README.md | 2 +- packages/jest/README.md | 2 +- packages/js/README.md | 2 +- packages/nest/README.md | 2 +- packages/next/README.md | 2 +- packages/node/README.md | 2 +- packages/nuxt/README.md | 2 +- packages/nx/README.md | 2 +- packages/playwright/README.md | 2 +- packages/plugin/README.md | 2 +- packages/react-native/README.md | 2 +- packages/react/README.md | 2 +- packages/remix/README.md | 2 +- packages/rollup/README.md | 2 +- packages/storybook/README.md | 2 +- packages/tao/README.md | 2 +- packages/vite/README.md | 2 +- packages/vue/README.md | 2 +- packages/web/README.md | 2 +- packages/webpack/README.md | 2 +- packages/workspace/README.md | 2 +- 61 files changed, 63 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index aabbca5c8fff7..a30045de79f00 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ # Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. Create a new Nx workspace with diff --git a/nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx b/nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx index 845290da416a7..fbd2044cedbc9 100644 --- a/nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx +++ b/nx-dev/feature-doc-viewer/src/lib/doc-viewer.tsx @@ -72,14 +72,14 @@ export function DocViewer({ title={vm.title + ' | Nx'} description={ vm.description ?? - 'Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.' + 'Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.' } openGraph={{ url: 'https://nx.dev' + router.asPath, title: vm.title, description: vm.description ?? - 'Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.', + 'Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.', images: [ { url: `https://nx.dev/images/open-graph/${router.asPath diff --git a/nx-dev/feature-package-schema-viewer/src/lib/package-schema-viewer.tsx b/nx-dev/feature-package-schema-viewer/src/lib/package-schema-viewer.tsx index 2e6f90fbe886b..cca13d357d17d 100644 --- a/nx-dev/feature-package-schema-viewer/src/lib/package-schema-viewer.tsx +++ b/nx-dev/feature-package-schema-viewer/src/lib/package-schema-viewer.tsx @@ -26,7 +26,7 @@ export function PackageSchemaViewer({ seo: { title: `${pkg.packageName}:${schema.name} | Nx`, description: - 'Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.', + 'Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.', imageUrl: `https://nx.dev/images/open-graph/${router.asPath .replace('/', '') .replace(/\//gi, '-')}.jpg`, diff --git a/nx-dev/nx-dev/pages/_app.tsx b/nx-dev/nx-dev/pages/_app.tsx index b02606448067f..416d787243cbe 100644 --- a/nx-dev/nx-dev/pages/_app.tsx +++ b/nx-dev/nx-dev/pages/_app.tsx @@ -24,12 +24,12 @@ export default function CustomApp({ <> npx create-nx-plugin` -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. ## What is It? diff --git a/packages/create-nx-workspace/README.md b/packages/create-nx-workspace/README.md index f0a13fbd74ec8..ed197764006b2 100644 --- a/packages/create-nx-workspace/README.md +++ b/packages/create-nx-workspace/README.md @@ -11,7 +11,7 @@ # `> npx create-nx-workspace` -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. ## What is It? diff --git a/packages/cypress/README.md b/packages/cypress/README.md index 32477fba1d2b4..05271ad298818 100644 --- a/packages/cypress/README.md +++ b/packages/cypress/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Cypress plugin for Nx](https://nx.dev/cypress/overview). diff --git a/packages/detox/README.md b/packages/detox/README.md index 7c13aa77ac97b..f8a675287ac19 100644 --- a/packages/detox/README.md +++ b/packages/detox/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Detox plugin for Nx](https://nx.dev/detox/overview). diff --git a/packages/devkit/README.md b/packages/devkit/README.md index 54a440cf394c3..ba59eafdb8fbc 100644 --- a/packages/devkit/README.md +++ b/packages/devkit/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package contains a set of utilities for creating Nx plugins. diff --git a/packages/esbuild/README.md b/packages/esbuild/README.md index b53cbd8684bcb..0aa342dec1e1b 100644 --- a/packages/esbuild/README.md +++ b/packages/esbuild/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [EsBuild plugin for Nx](https://nx.dev/nx-api/esbuild). diff --git a/packages/eslint-plugin/README.md b/packages/eslint-plugin/README.md index bf37bb9a1b202..7a8db36e23b9d 100644 --- a/packages/eslint-plugin/README.md +++ b/packages/eslint-plugin/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is an ESLint plugin for Nx. diff --git a/packages/eslint/README.md b/packages/eslint/README.md index bde15af0f7c67..644bc293ada56 100644 --- a/packages/eslint/README.md +++ b/packages/eslint/README.md @@ -11,6 +11,6 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. {{content}} diff --git a/packages/expo/README.md b/packages/expo/README.md index d359518ae5830..3be55d391f9f7 100644 --- a/packages/expo/README.md +++ b/packages/expo/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Expo plugin for Nx](https://nx.dev/expo/overview). diff --git a/packages/express/README.md b/packages/express/README.md index ba272cd392f12..26c0ac49d79be 100644 --- a/packages/express/README.md +++ b/packages/express/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is an [Express plugin for Nx](https://nx.dev/express/overview). diff --git a/packages/gradle/README.md b/packages/gradle/README.md index d9acae4cbbccb..242510450d9e2 100644 --- a/packages/gradle/README.md +++ b/packages/gradle/README.md @@ -13,7 +13,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Gradle plugin for Nx](https://nx.dev/gradle/overview). diff --git a/packages/jest/README.md b/packages/jest/README.md index 9145f79a09228..7bd0e4473de3d 100644 --- a/packages/jest/README.md +++ b/packages/jest/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Jest plugin for Nx](https://nx.dev/jest/overview). diff --git a/packages/js/README.md b/packages/js/README.md index 84ece94e5258c..e9b8913b130a6 100644 --- a/packages/js/README.md +++ b/packages/js/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [JavaScript/TypeScript plugin for Nx](https://nx.dev/js/overview). diff --git a/packages/nest/README.md b/packages/nest/README.md index fc0961221fac1..eca0f5530cfe5 100644 --- a/packages/nest/README.md +++ b/packages/nest/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [NestJS plugin for Nx](https://nx.dev/nest/overview). diff --git a/packages/next/README.md b/packages/next/README.md index 4b13d399d56c4..a738b148b83a5 100644 --- a/packages/next/README.md +++ b/packages/next/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Next.js plugin for Nx](https://nx.dev/next/overview). diff --git a/packages/node/README.md b/packages/node/README.md index bde15af0f7c67..644bc293ada56 100644 --- a/packages/node/README.md +++ b/packages/node/README.md @@ -11,6 +11,6 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. {{content}} diff --git a/packages/nuxt/README.md b/packages/nuxt/README.md index 8b44a7f66e09f..68342c1397454 100644 --- a/packages/nuxt/README.md +++ b/packages/nuxt/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Nuxt plugin for Nx](https://nx.dev/nx-api/nuxt). diff --git a/packages/nx/README.md b/packages/nx/README.md index bde15af0f7c67..644bc293ada56 100644 --- a/packages/nx/README.md +++ b/packages/nx/README.md @@ -11,6 +11,6 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. {{content}} diff --git a/packages/playwright/README.md b/packages/playwright/README.md index bde15af0f7c67..644bc293ada56 100644 --- a/packages/playwright/README.md +++ b/packages/playwright/README.md @@ -11,6 +11,6 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. {{content}} diff --git a/packages/plugin/README.md b/packages/plugin/README.md index 44874ea8b5026..e133d7d4d6b06 100644 --- a/packages/plugin/README.md +++ b/packages/plugin/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. ## What is It? diff --git a/packages/react-native/README.md b/packages/react-native/README.md index 85029380e4be7..7e325b06f88f4 100644 --- a/packages/react-native/README.md +++ b/packages/react-native/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [React Native plugin for Nx](https://nx.dev/nx-api/react-native). diff --git a/packages/react/README.md b/packages/react/README.md index 7d4dda4db0315..123da95917087 100644 --- a/packages/react/README.md +++ b/packages/react/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [React plugin for Nx](https://nx.dev/nx-api/react). diff --git a/packages/remix/README.md b/packages/remix/README.md index 2e140854c002f..9d89fc345cdb6 100644 --- a/packages/remix/README.md +++ b/packages/remix/README.md @@ -6,7 +6,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Remix plugin for Nx](https://nx.dev/nx-api/remix). diff --git a/packages/rollup/README.md b/packages/rollup/README.md index 8030f62983e7a..10f4efac1caac 100644 --- a/packages/rollup/README.md +++ b/packages/rollup/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Rollup plugin for Nx](https://nx.dev/nx-api/rollup). diff --git a/packages/storybook/README.md b/packages/storybook/README.md index f742b1d2e3a5f..13093060cd72a 100644 --- a/packages/storybook/README.md +++ b/packages/storybook/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Storybook plugin for Nx](https://nx.dev/nx-api/storybook). diff --git a/packages/tao/README.md b/packages/tao/README.md index 0141d135177f2..a1527deb061f7 100644 --- a/packages/tao/README.md +++ b/packages/tao/README.md @@ -15,4 +15,4 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. diff --git a/packages/vite/README.md b/packages/vite/README.md index d99d7f5c00dd7..872f3b7f701b6 100644 --- a/packages/vite/README.md +++ b/packages/vite/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Vite plugin for Nx](https://nx.dev/nx-api/vite). diff --git a/packages/vue/README.md b/packages/vue/README.md index 0b4b7a7a77b3e..5744ed60ac9d1 100644 --- a/packages/vue/README.md +++ b/packages/vue/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Vue plugin for Nx](https://nx.dev/nx-api/vue). diff --git a/packages/web/README.md b/packages/web/README.md index 50011a1eb718e..55e0f39a80a37 100644 --- a/packages/web/README.md +++ b/packages/web/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Web plugin for Nx](https://nx.dev/nx-api/web). diff --git a/packages/webpack/README.md b/packages/webpack/README.md index 683152e811ba1..28c92714083ba 100644 --- a/packages/webpack/README.md +++ b/packages/webpack/README.md @@ -11,7 +11,7 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. This package is a [Webpack plugin for Nx](https://nx.dev/nx-api/webpack). diff --git a/packages/workspace/README.md b/packages/workspace/README.md index bde15af0f7c67..644bc293ada56 100644 --- a/packages/workspace/README.md +++ b/packages/workspace/README.md @@ -11,6 +11,6 @@ # Nx: Smart Monorepos · Fast CI -Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI. +Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution. {{content}}