@nx/angular 19.4.0-canary.20240622-963f753 → 19.4.0-canary.20240627-c2c6a13
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +8 -8
- package/src/executors/module-federation-dev-server/lib/build-static-remotes.js +4 -1
- package/src/executors/utilities/typescript.js +2 -3
- package/src/generators/ng-add/migrators/projects/app.migrator.js +1 -1
- package/src/generators/ng-add/migrators/projects/lib.migrator.js +1 -1
- package/src/generators/ng-add/utilities/validation-logging.js +1 -2
- package/src/migrations/update-17-1-0/browser-target-to-build-target.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "19.4.0-canary.
|
3
|
+
"version": "19.4.0-canary.20240627-c2c6a13",
|
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.0-canary.
|
83
|
-
"@nx/js": "19.4.0-canary.
|
84
|
-
"@nx/eslint": "19.4.0-canary.
|
85
|
-
"@nx/webpack": "19.4.0-canary.
|
86
|
-
"@nx/web": "19.4.0-canary.
|
87
|
-
"@nx/workspace": "19.4.0-canary.
|
82
|
+
"@nx/devkit": "19.4.0-canary.20240627-c2c6a13",
|
83
|
+
"@nx/js": "19.4.0-canary.20240627-c2c6a13",
|
84
|
+
"@nx/eslint": "19.4.0-canary.20240627-c2c6a13",
|
85
|
+
"@nx/webpack": "19.4.0-canary.20240627-c2c6a13",
|
86
|
+
"@nx/web": "19.4.0-canary.20240627-c2c6a13",
|
87
|
+
"@nx/workspace": "19.4.0-canary.20240627-c2c6a13",
|
88
88
|
"piscina": "^4.4.0",
|
89
|
-
"@nrwl/angular": "19.4.0-canary.
|
89
|
+
"@nrwl/angular": "19.4.0-canary.20240627-c2c6a13"
|
90
90
|
},
|
91
91
|
"peerDependencies": {
|
92
92
|
"@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
|
@@ -43,11 +43,14 @@ async function buildStaticRemotes(staticRemotesConfig, nxBin, context, options)
|
|
43
43
|
}
|
44
44
|
});
|
45
45
|
staticProcess.stderr.on('data', (data) => devkit_1.logger.info(data.toString()));
|
46
|
-
staticProcess.
|
46
|
+
staticProcess.once('exit', (code) => {
|
47
47
|
stdoutStream.end();
|
48
|
+
staticProcess.stdout.removeAllListeners('data');
|
49
|
+
staticProcess.stderr.removeAllListeners('data');
|
48
50
|
if (code !== 0) {
|
49
51
|
throw new Error(`Remote failed to start. A complete log can be found in: ${remoteBuildLogFile}`);
|
50
52
|
}
|
53
|
+
res();
|
51
54
|
});
|
52
55
|
process.on('SIGTERM', () => staticProcess.kill('SIGTERM'));
|
53
56
|
process.on('exit', () => staticProcess.kill('SIGTERM'));
|
@@ -16,15 +16,14 @@ const module_loader_1 = require("./module-loader");
|
|
16
16
|
async function readDefaultTsConfig(fileName) {
|
17
17
|
// these options are mandatory
|
18
18
|
const extraOptions = {
|
19
|
-
target: ts.ScriptTarget.
|
20
|
-
experimentalDecorators: true,
|
19
|
+
target: ts.ScriptTarget.ES2022,
|
21
20
|
// sourcemaps
|
22
21
|
sourceMap: false,
|
23
22
|
inlineSources: true,
|
24
23
|
inlineSourceMap: true,
|
25
24
|
outDir: '',
|
26
25
|
declaration: true,
|
27
|
-
// ng compiler
|
26
|
+
// ng compiler
|
28
27
|
enableResourceInlining: true,
|
29
28
|
// these are required to set the appropriate EmitFlags
|
30
29
|
flatModuleId: 'AUTOGENERATED',
|
@@ -53,10 +53,10 @@ class AppMigrator extends project_migrator_1.ProjectMigrator {
|
|
53
53
|
: undefined);
|
54
54
|
}
|
55
55
|
async migrate() {
|
56
|
+
await super.migrate();
|
56
57
|
if (this.skipMigration === true) {
|
57
58
|
return;
|
58
59
|
}
|
59
|
-
await super.migrate();
|
60
60
|
this.updateProjectConfiguration();
|
61
61
|
await this.e2eMigrator.migrate();
|
62
62
|
this.moveProjectFiles();
|
@@ -16,10 +16,10 @@ class LibMigrator extends project_migrator_1.ProjectMigrator {
|
|
16
16
|
super(tree, options, {}, project, 'libs', logger, supportedBuilderMigrators);
|
17
17
|
}
|
18
18
|
async migrate() {
|
19
|
+
await super.migrate();
|
19
20
|
if (this.skipMigration === true) {
|
20
21
|
return;
|
21
22
|
}
|
22
|
-
await super.migrate();
|
23
23
|
await this.updateProjectConfiguration();
|
24
24
|
this.moveProjectFiles();
|
25
25
|
for (const builderMigrator of this.builderMigrators ?? []) {
|
@@ -1,8 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.getProjectValidationResultMessage = exports.arrayToString = void 0;
|
4
|
-
const
|
5
|
-
const chalk = tslib_1.__importStar(require("chalk"));
|
4
|
+
const chalk = require("chalk");
|
6
5
|
function arrayToString(array) {
|
7
6
|
if (array.length === 0) {
|
8
7
|
return '';
|
@@ -43,7 +43,7 @@ async function default_1(tree) {
|
|
43
43
|
}
|
44
44
|
exports.default = default_1;
|
45
45
|
function updateConfig(config) {
|
46
|
-
if (config.browserTarget) {
|
46
|
+
if (config && config.browserTarget) {
|
47
47
|
config.buildTarget ??= config.browserTarget;
|
48
48
|
delete config.browserTarget;
|
49
49
|
}
|