@nx/workspace 18.0.0-canary.20240203-7623471 → 18.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/workspace",
3
- "version": "18.0.0-canary.20240203-7623471",
3
+ "version": "18.0.1",
4
4
  "private": false,
5
5
  "description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",
6
6
  "repository": {
@@ -61,13 +61,13 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@nx/devkit": "18.0.0-canary.20240203-7623471",
64
+ "@nx/devkit": "18.0.1",
65
65
  "chalk": "^4.1.0",
66
66
  "enquirer": "~2.3.6",
67
67
  "tslib": "^2.3.0",
68
68
  "yargs-parser": "21.1.1",
69
- "nx": "18.0.0-canary.20240203-7623471",
70
- "@nrwl/workspace": "18.0.0-canary.20240203-7623471"
69
+ "nx": "18.0.1",
70
+ "@nrwl/workspace": "18.0.1"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -16,7 +16,7 @@ If you happen to use Nx plugins, you can leverage code generators that might com
16
16
 
17
17
  Run `nx list` to get a list of available plugins and whether they have generators. Then run `nx list <plugin-name>` to see what generators are available.
18
18
 
19
- Learn more about [Nx generators on the docs](https://nx.dev/plugin-features/use-code-generators).
19
+ Learn more about [Nx generators on the docs](https://nx.dev/features/generate-code).
20
20
 
21
21
  ## Running tasks
22
22
 
@@ -38,7 +38,7 @@ nx run-many -t <target1> <target2>
38
38
  nx run-many -t <target1> <target2> -p <proj1> <proj2>
39
39
  ```
40
40
 
41
- Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/core-features/run-tasks).
41
+ Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/features/run-tasks).
42
42
 
43
43
  ## Want better Editor Integration?
44
44
 
@@ -52,7 +52,7 @@ Just run `nx build demoapp` to build the application. The build artifacts will b
52
52
 
53
53
  Nx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.
54
54
 
55
- - [Set up remote caching](https://nx.dev/core-features/share-your-cache)
55
+ - [Set up remote caching](https://nx.dev/features/share-your-cache)
56
56
  - [Set up task distribution across multiple machines](https://nx.dev/nx-cloud/features/distribute-task-execution)
57
57
  - [Learn more how to setup CI](https://nx.dev/recipes/ci)
58
58