nx 20.1.0-canary.20241026-f84b6e5 → 20.1.0-canary.20241030-62f58eb

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "20.1.0-canary.20241026-f84b6e5",
3
+ "version": "20.1.0-canary.20241030-62f58eb",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -80,76 +80,50 @@
80
80
  }
81
81
  },
82
82
  "optionalDependencies": {
83
- "@nx/nx-darwin-x64": "20.1.0-canary.20241026-f84b6e5",
84
- "@nx/nx-darwin-arm64": "20.1.0-canary.20241026-f84b6e5",
85
- "@nx/nx-linux-x64-gnu": "20.1.0-canary.20241026-f84b6e5",
86
- "@nx/nx-linux-x64-musl": "20.1.0-canary.20241026-f84b6e5",
87
- "@nx/nx-win32-x64-msvc": "20.1.0-canary.20241026-f84b6e5",
88
- "@nx/nx-linux-arm64-gnu": "20.1.0-canary.20241026-f84b6e5",
89
- "@nx/nx-linux-arm64-musl": "20.1.0-canary.20241026-f84b6e5",
90
- "@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.20241026-f84b6e5",
91
- "@nx/nx-win32-arm64-msvc": "20.1.0-canary.20241026-f84b6e5",
92
- "@nx/nx-freebsd-x64": "20.1.0-canary.20241026-f84b6e5"
83
+ "@nx/nx-darwin-x64": "20.1.0-canary.20241030-62f58eb",
84
+ "@nx/nx-darwin-arm64": "20.1.0-canary.20241030-62f58eb",
85
+ "@nx/nx-linux-x64-gnu": "20.1.0-canary.20241030-62f58eb",
86
+ "@nx/nx-linux-x64-musl": "20.1.0-canary.20241030-62f58eb",
87
+ "@nx/nx-win32-x64-msvc": "20.1.0-canary.20241030-62f58eb",
88
+ "@nx/nx-linux-arm64-gnu": "20.1.0-canary.20241030-62f58eb",
89
+ "@nx/nx-linux-arm64-musl": "20.1.0-canary.20241030-62f58eb",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.20241030-62f58eb",
91
+ "@nx/nx-win32-arm64-msvc": "20.1.0-canary.20241030-62f58eb",
92
+ "@nx/nx-freebsd-x64": "20.1.0-canary.20241030-62f58eb"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
96
96
  "packageGroup": [
97
97
  "@nx/js",
98
- "@nrwl/js",
99
98
  "@nx/jest",
100
- "@nrwl/jest",
101
99
  "@nx/linter",
102
100
  "@nx/eslint",
103
- "@nrwl/linter",
104
101
  "@nx/workspace",
105
- "@nrwl/workspace",
106
102
  "@nx/angular",
107
- "@nrwl/angular",
108
103
  "@nx/cypress",
109
- "@nrwl/cypress",
110
104
  "@nx/detox",
111
- "@nrwl/detox",
112
105
  "@nx/devkit",
113
- "@nrwl/devkit",
114
106
  "@nx/esbuild",
115
- "@nrwl/esbuild",
116
107
  "@nx/eslint-plugin",
117
- "@nrwl/eslint-plugin-nx",
118
108
  "@nx/expo",
119
- "@nrwl/expo",
120
109
  "@nx/express",
121
- "@nrwl/express",
122
110
  "@nx/gradle",
123
111
  "@nx/nest",
124
- "@nrwl/nest",
125
112
  "@nx/next",
126
- "@nrwl/next",
127
113
  "@nx/node",
128
- "@nrwl/node",
129
114
  "@nx/nuxt",
130
115
  "@nx/playwright",
131
116
  "@nx/plugin",
132
- "@nrwl/nx-plugin",
133
117
  "@nx/react",
134
- "@nrwl/react",
135
118
  "@nx/react-native",
136
- "@nrwl/react-native",
137
119
  "@nx/rollup",
138
- "@nrwl/rollup",
139
120
  "@nx/remix",
140
- "@nrwl/remix",
141
121
  "@nx/rspack",
142
- "@nrwl/rspack",
143
122
  "@nx/storybook",
144
- "@nrwl/storybook",
145
- "@nrwl/tao",
146
123
  "@nx/vite",
147
- "@nrwl/vite",
148
124
  "@nx/vue",
149
125
  "@nx/web",
150
- "@nrwl/web",
151
126
  "@nx/webpack",
152
- "@nrwl/webpack",
153
127
  {
154
128
  "package": "nx-cloud",
155
129
  "version": "latest"
@@ -25,7 +25,7 @@ function shouldMergeAngularProjects(root, includeProjectsFromAngularJson) {
25
25
  // Include projects from angular.json if explicitly required.
26
26
  // e.g. when invoked from `packages/devkit/src/utils/convert-nx-executor.ts`
27
27
  (includeProjectsFromAngularJson ||
28
- // Or if a workspace has `@nrwl/angular`/`@nx/angular` installed then projects from `angular.json` to be considered by Nx.
28
+ // Or if a workspace has `@nx/angular` installed then projects from `angular.json` to be considered by Nx.
29
29
  isAngularPluginInstalled())) {
30
30
  return true;
31
31
  }
@@ -40,13 +40,7 @@ function isAngularPluginInstalled() {
40
40
  return true;
41
41
  }
42
42
  catch {
43
- try {
44
- require.resolve('@nrwl/angular');
45
- return true;
46
- }
47
- catch {
48
- return false;
49
- }
43
+ return false;
50
44
  }
51
45
  }
52
46
  function readAngularJson(angularCliWorkspaceRoot) {