docs(core): link tutorials from package docs

This commit is contained in:
Isaac Mann 2023-10-24 14:16:31 -04:00 committed by Juri Strumpflohner
parent d44b01655e
commit 68fcda59ab
7 changed files with 25 additions and 1 deletions

View File

@ -33,6 +33,10 @@ yarn add -D @nx/angular
npm install -D @nx/angular npm install -D @nx/angular
``` ```
{% callout type="note" title="Angular Tutorials" %}
For a full tutorial experience, follow the [Angular Standalone Tutorial](/getting-started/tutorials/angular-standalone-tutorial) or the [Angular Monorepo Tutorial](/getting-started/tutorials/angular-monorepo-tutorial)
{% /callout %}
## Using the Angular Plugin ## Using the Angular Plugin
### Generating an application ### Generating an application

View File

@ -24,6 +24,10 @@ npm install -D @nx/react
yarn add -D @nx/react yarn add -D @nx/react
``` ```
{% callout type="note" title="React Tutorials" %}
For a full tutorial experience, follow the [React Standalone Tutorial](/getting-started/tutorials/react-standalone-tutorial) or the [React Monorepo Tutorial](/getting-started/tutorials/react-monorepo-tutorial)
{% /callout %}
### Creating Applications and Libraries ### Creating Applications and Libraries
You can add a new application with the following: You can add a new application with the following:

View File

@ -15,6 +15,10 @@ You can create a new workspace that uses Vue with one of the following commands:
npx create-nx-workspace@latest --preset=vue npx create-nx-workspace@latest --preset=vue
``` ```
{% callout type="note" title="Vue Standalone Tutorial" %}
For a full tutorial experience, follow the [Vue Standalone Tutorial](/getting-started/tutorials/vue-standalone-tutorial)
{% /callout %}
## Add Vue to an existing workspace ## Add Vue to an existing workspace
There are a number of ways to use Vue in your existing workspace. There are a number of ways to use Vue in your existing workspace.

View File

@ -33,6 +33,10 @@ yarn add -D @nx/angular
npm install -D @nx/angular npm install -D @nx/angular
``` ```
{% callout type="note" title="Angular Tutorials" %}
For a full tutorial experience, follow the [Angular Standalone Tutorial](/getting-started/tutorials/angular-standalone-tutorial) or the [Angular Monorepo Tutorial](/getting-started/tutorials/angular-monorepo-tutorial)
{% /callout %}
## Using the Angular Plugin ## Using the Angular Plugin
### Generating an application ### Generating an application

View File

@ -24,6 +24,10 @@ npm install -D @nx/react
yarn add -D @nx/react yarn add -D @nx/react
``` ```
{% callout type="note" title="React Tutorials" %}
For a full tutorial experience, follow the [React Standalone Tutorial](/getting-started/tutorials/react-standalone-tutorial) or the [React Monorepo Tutorial](/getting-started/tutorials/react-monorepo-tutorial)
{% /callout %}
### Creating Applications and Libraries ### Creating Applications and Libraries
You can add a new application with the following: You can add a new application with the following:

View File

@ -15,6 +15,10 @@ You can create a new workspace that uses Vue with one of the following commands:
npx create-nx-workspace@latest --preset=vue npx create-nx-workspace@latest --preset=vue
``` ```
{% callout type="note" title="Vue Standalone Tutorial" %}
For a full tutorial experience, follow the [Vue Standalone Tutorial](/getting-started/tutorials/vue-standalone-tutorial)
{% /callout %}
## Add Vue to an existing workspace ## Add Vue to an existing workspace
There are a number of ways to use Vue in your existing workspace. There are a number of ways to use Vue in your existing workspace.

View File

@ -8,7 +8,7 @@ Problem: A task is being executed when you expect it to be replayed from the cac
- Check the `inputs` and `namedInputs` defined in the project configuration and root `nx.json`. The `inputs` control whether a task will execute or replay from cache. - Check the `inputs` and `namedInputs` defined in the project configuration and root `nx.json`. The `inputs` control whether a task will execute or replay from cache.
- Check to see if there is an output file that is not being captured by the `outputs` for the task. The `outputs` property only controls what files are replayed from the cache, it doesn't dictate whether the cache is replayed, but an unaccounted output file could be modifying one of the inputs of the task. - Check to see if there is an output file that is not being captured by the `outputs` for the task. The `outputs` property only controls what files are replayed from the cache, it doesn't dictate whether the cache is replayed, but an unaccounted output file could be modifying one of the inputs of the task.
- To check your input glob patterns file-by-file, you can get a list of all the files associated with each project by running: `nx graph --file=output.json` - To check your input glob patterns file-by-file, you can get a list of all the files associated with each project by running `nx graph --file=output.json` or by clicking on a task in the task graph in the `nx graph` visualization.
1. Use the Nx Cloud troubleshooting tools 1. Use the Nx Cloud troubleshooting tools
- Make sure your repo is [connected to Nx Cloud](/core-features/cache-task-results#distributed-computation-caching) - Make sure your repo is [connected to Nx Cloud](/core-features/cache-task-results#distributed-computation-caching)