@nx/angular 21.3.0-canary.20250614-db86a35 → 21.3.0-canary.20250617-b97222d
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": "21.3.0-canary.
|
3
|
+
"version": "21.3.0-canary.20250617-b97222d",
|
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": {
|
@@ -58,14 +58,14 @@
|
|
58
58
|
"migrations": "./migrations.json"
|
59
59
|
},
|
60
60
|
"dependencies": {
|
61
|
-
"@nx/devkit": "21.3.0-canary.
|
62
|
-
"@nx/eslint": "21.3.0-canary.
|
63
|
-
"@nx/js": "21.3.0-canary.
|
64
|
-
"@nx/module-federation": "21.3.0-canary.
|
65
|
-
"@nx/rspack": "21.3.0-canary.
|
66
|
-
"@nx/web": "21.3.0-canary.
|
67
|
-
"@nx/webpack": "21.3.0-canary.
|
68
|
-
"@nx/workspace": "21.3.0-canary.
|
61
|
+
"@nx/devkit": "21.3.0-canary.20250617-b97222d",
|
62
|
+
"@nx/eslint": "21.3.0-canary.20250617-b97222d",
|
63
|
+
"@nx/js": "21.3.0-canary.20250617-b97222d",
|
64
|
+
"@nx/module-federation": "21.3.0-canary.20250617-b97222d",
|
65
|
+
"@nx/rspack": "21.3.0-canary.20250617-b97222d",
|
66
|
+
"@nx/web": "21.3.0-canary.20250617-b97222d",
|
67
|
+
"@nx/webpack": "21.3.0-canary.20250617-b97222d",
|
68
|
+
"@nx/workspace": "21.3.0-canary.20250617-b97222d",
|
69
69
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
70
70
|
"@typescript-eslint/type-utils": "^8.0.0",
|
71
71
|
"enquirer": "~2.3.6",
|
@@ -12,8 +12,9 @@ const tslib_1 = require("tslib");
|
|
12
12
|
const devkit_1 = require("@nx/devkit");
|
13
13
|
const browserslist_1 = tslib_1.__importDefault(require("browserslist"));
|
14
14
|
const fs_1 = require("fs");
|
15
|
-
const color_1 = require("ng-packagr/src/lib/utils/color");
|
16
15
|
const path_1 = require("path");
|
16
|
+
const ng_packagr_version_1 = require("../ng-packagr-version");
|
17
|
+
const package_imports_1 = require("../package-imports");
|
17
18
|
const maxWorkersVariable = process.env['NG_BUILD_MAX_WORKERS'];
|
18
19
|
const maxThreads = typeof maxWorkersVariable === 'string' && maxWorkersVariable !== ''
|
19
20
|
? +maxWorkersVariable
|
@@ -76,6 +77,8 @@ class StylesheetProcessor {
|
|
76
77
|
devkit_1.workspaceRoot,
|
77
78
|
]);
|
78
79
|
const tailwindConfigPath = findTailwindConfiguration(searchDirs);
|
80
|
+
const { major: ngPackagrMajorVersion } = (0, ng_packagr_version_1.getNgPackagrVersionInfo)();
|
81
|
+
const { colors } = (0, package_imports_1.importNgPackagrPath)('ng-packagr/src/lib/utils/color', ngPackagrMajorVersion);
|
79
82
|
const Piscina = getPiscina();
|
80
83
|
this.renderWorker = new Piscina({
|
81
84
|
filename: require.resolve('ng-packagr/lib/styles/stylesheet-processor-worker'),
|
@@ -83,7 +86,7 @@ class StylesheetProcessor {
|
|
83
86
|
recordTiming: false,
|
84
87
|
env: {
|
85
88
|
...process.env,
|
86
|
-
FORCE_COLOR: '' +
|
89
|
+
FORCE_COLOR: '' + colors.enabled,
|
87
90
|
},
|
88
91
|
workerData: {
|
89
92
|
postcssConfiguration,
|