@nx/angular 20.8.0-canary.20250402-2d210b8 → 20.8.0-canary.20250403-6e50a01
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/angular",
|
3
|
-
"version": "20.8.0-canary.
|
3
|
+
"version": "20.8.0-canary.20250403-6e50a01",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
6
6
|
"repository": {
|
@@ -72,14 +72,14 @@
|
|
72
72
|
"semver": "^7.5.3",
|
73
73
|
"tslib": "^2.3.0",
|
74
74
|
"webpack-merge": "^5.8.0",
|
75
|
-
"@nx/devkit": "20.8.0-canary.
|
76
|
-
"@nx/js": "20.8.0-canary.
|
77
|
-
"@nx/eslint": "20.8.0-canary.
|
78
|
-
"@nx/webpack": "20.8.0-canary.
|
79
|
-
"@nx/rspack": "20.8.0-canary.
|
80
|
-
"@nx/module-federation": "20.8.0-canary.
|
81
|
-
"@nx/web": "20.8.0-canary.
|
82
|
-
"@nx/workspace": "20.8.0-canary.
|
75
|
+
"@nx/devkit": "20.8.0-canary.20250403-6e50a01",
|
76
|
+
"@nx/js": "20.8.0-canary.20250403-6e50a01",
|
77
|
+
"@nx/eslint": "20.8.0-canary.20250403-6e50a01",
|
78
|
+
"@nx/webpack": "20.8.0-canary.20250403-6e50a01",
|
79
|
+
"@nx/rspack": "20.8.0-canary.20250403-6e50a01",
|
80
|
+
"@nx/module-federation": "20.8.0-canary.20250403-6e50a01",
|
81
|
+
"@nx/web": "20.8.0-canary.20250403-6e50a01",
|
82
|
+
"@nx/workspace": "20.8.0-canary.20250403-6e50a01",
|
83
83
|
"piscina": "^4.4.0"
|
84
84
|
},
|
85
85
|
"peerDependencies": {
|
@@ -118,9 +118,7 @@ function executeDevServerBuilder(rawOptions, context) {
|
|
118
118
|
// run the target for all projects.
|
119
119
|
// This will occur when workspaceDependencies = []
|
120
120
|
if (workspaceDependencies.length > 0) {
|
121
|
-
baseWebpackConfig.plugins.push(
|
122
|
-
// @ts-expect-error - difference between angular and webpack plugin definitions bc of webpack versions
|
123
|
-
new webpack_nx_build_coordination_plugin_1.WebpackNxBuildCoordinationPlugin(`nx run-many --target=${parsedBuildTarget.target} --projects=${workspaceDependencies.join(',')}`, { skipWatchingDeps: !options.watchDependencies }));
|
121
|
+
baseWebpackConfig.plugins.push(new webpack_nx_build_coordination_plugin_1.WebpackNxBuildCoordinationPlugin(`nx run-many --target=${parsedBuildTarget.target} --projects=${workspaceDependencies.join(',')}`, { skipWatchingDeps: !options.watchDependencies }));
|
124
122
|
}
|
125
123
|
}
|
126
124
|
if (!pathToWebpackConfig) {
|