@nx/angular 19.4.1 → 19.4.3
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": "19.4.
|
3
|
+
"version": "19.4.3",
|
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": {
|
@@ -79,14 +79,14 @@
|
|
79
79
|
"tslib": "^2.3.0",
|
80
80
|
"webpack": "^5.80.0",
|
81
81
|
"webpack-merge": "^5.8.0",
|
82
|
-
"@nx/devkit": "19.4.
|
83
|
-
"@nx/js": "19.4.
|
84
|
-
"@nx/eslint": "19.4.
|
85
|
-
"@nx/webpack": "19.4.
|
86
|
-
"@nx/web": "19.4.
|
87
|
-
"@nx/workspace": "19.4.
|
82
|
+
"@nx/devkit": "19.4.3",
|
83
|
+
"@nx/js": "19.4.3",
|
84
|
+
"@nx/eslint": "19.4.3",
|
85
|
+
"@nx/webpack": "19.4.3",
|
86
|
+
"@nx/web": "19.4.3",
|
87
|
+
"@nx/workspace": "19.4.3",
|
88
88
|
"piscina": "^4.4.0",
|
89
|
-
"@nrwl/angular": "19.4.
|
89
|
+
"@nrwl/angular": "19.4.3"
|
90
90
|
},
|
91
91
|
"peerDependencies": {
|
92
92
|
"@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
|
@@ -12,7 +12,14 @@ const operators_2 = require("rxjs/operators");
|
|
12
12
|
const buildable_libs_1 = require("../utilities/buildable-libs");
|
13
13
|
const webpack_1 = require("../utilities/webpack");
|
14
14
|
function shouldSkipInitialTargetRun(projectGraph, project, target) {
|
15
|
-
const
|
15
|
+
const allTargetNames = new Set();
|
16
|
+
for (const projectName in projectGraph.nodes) {
|
17
|
+
const project = projectGraph.nodes[projectName];
|
18
|
+
for (const targetName in project.data.targets ?? {}) {
|
19
|
+
allTargetNames.add(targetName);
|
20
|
+
}
|
21
|
+
}
|
22
|
+
const projectDependencyConfigs = (0, utils_1.getDependencyConfigs)({ project, target }, {}, projectGraph, Array.from(allTargetNames));
|
16
23
|
// if the task runner already ran the target, skip the initial run
|
17
24
|
return projectDependencyConfigs.some((d) => d.target === target && d.projects === 'dependencies');
|
18
25
|
}
|