@nx/angular 19.7.0-canary.20240817-b91d788 → 19.7.0-canary.20240821-2065033
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/migrations.json +12 -0
- package/package.json +8 -8
- package/src/executors/module-federation-dev-server/module-federation-dev-server.impl.js +4 -1
- package/src/executors/module-federation-ssr-dev-server/module-federation-ssr-dev-server.impl.js +4 -1
- package/src/generators/application/lib/normalized-schema.d.ts +2 -2
- package/src/generators/application/schema.d.ts +2 -2
- package/src/generators/host/schema.d.ts +2 -2
- package/src/generators/library/lib/normalized-schema.d.ts +2 -2
- package/src/generators/library/schema.d.ts +2 -2
- package/src/generators/ng-add/schema.d.ts +2 -2
- package/src/generators/remote/schema.d.ts +2 -2
- package/src/generators/storybook-configuration/schema.d.ts +2 -2
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# Nx: Smart Monorepos · Fast CI
|
24
24
|
|
25
|
-
Nx is a build system
|
25
|
+
Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
|
26
26
|
|
27
27
|
This package is an [Angular plugin for Nx](https://nx.dev/nx-api/angular).
|
28
28
|
|
package/migrations.json
CHANGED
@@ -2110,6 +2110,18 @@
|
|
2110
2110
|
"alwaysAddToPackageJson": false
|
2111
2111
|
}
|
2112
2112
|
}
|
2113
|
+
},
|
2114
|
+
"19.6.1-ngrx": {
|
2115
|
+
"version": "19.6.1-beta.0",
|
2116
|
+
"requires": {
|
2117
|
+
"@angular/core": "^18.0.0"
|
2118
|
+
},
|
2119
|
+
"packages": {
|
2120
|
+
"@ngrx/store": {
|
2121
|
+
"version": "^18.0.2",
|
2122
|
+
"alwaysAddToPackageJson": false
|
2123
|
+
}
|
2124
|
+
}
|
2113
2125
|
}
|
2114
2126
|
}
|
2115
2127
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "19.7.0-canary.
|
3
|
+
"version": "19.7.0-canary.20240821-2065033",
|
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
|
"webpack-merge": "^5.8.0",
|
80
80
|
"webpack": "^5.88.0",
|
81
81
|
"@module-federation/enhanced": "~0.2.3",
|
82
|
-
"@nx/devkit": "19.7.0-canary.
|
83
|
-
"@nx/js": "19.7.0-canary.
|
84
|
-
"@nx/eslint": "19.7.0-canary.
|
85
|
-
"@nx/webpack": "19.7.0-canary.
|
86
|
-
"@nx/web": "19.7.0-canary.
|
87
|
-
"@nx/workspace": "19.7.0-canary.
|
82
|
+
"@nx/devkit": "19.7.0-canary.20240821-2065033",
|
83
|
+
"@nx/js": "19.7.0-canary.20240821-2065033",
|
84
|
+
"@nx/eslint": "19.7.0-canary.20240821-2065033",
|
85
|
+
"@nx/webpack": "19.7.0-canary.20240821-2065033",
|
86
|
+
"@nx/web": "19.7.0-canary.20240821-2065033",
|
87
|
+
"@nx/workspace": "19.7.0-canary.20240821-2065033",
|
88
88
|
"piscina": "^4.4.0",
|
89
|
-
"@nrwl/angular": "19.7.0-canary.
|
89
|
+
"@nrwl/angular": "19.7.0-canary.20240821-2065033"
|
90
90
|
},
|
91
91
|
"peerDependencies": {
|
92
92
|
"@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
|
@@ -66,7 +66,10 @@ async function* moduleFederationDevServerExecutor(schema, context) {
|
|
66
66
|
}, pathToManifestFile);
|
67
67
|
options.staticRemotesPort ??= remotes.staticRemotePort;
|
68
68
|
// Set NX_MF_DEV_REMOTES for the Nx Runtime Library Control Plugin
|
69
|
-
process.env.NX_MF_DEV_REMOTES = JSON.stringify(
|
69
|
+
process.env.NX_MF_DEV_REMOTES = JSON.stringify([
|
70
|
+
...(remotes.devRemotes.map((r) => typeof r === 'string' ? r : r.remoteName) ?? []),
|
71
|
+
project.name,
|
72
|
+
]);
|
70
73
|
const staticRemotesConfig = (0, parse_static_remotes_config_1.parseStaticRemotesConfig)([...remotes.staticRemotes, ...remotes.dynamicRemotes], context);
|
71
74
|
const mappedLocationsOfStaticRemotes = await (0, lib_1.buildStaticRemotes)(staticRemotesConfig, nxBin, context, options);
|
72
75
|
const devRemoteIters = await (0, lib_1.startRemotes)(remotes.devRemotes, workspaceProjects, options, context, 'serve');
|
package/src/executors/module-federation-ssr-dev-server/module-federation-ssr-dev-server.impl.js
CHANGED
@@ -61,7 +61,10 @@ async function* moduleFederationSsrDevServerExecutor(schema, context) {
|
|
61
61
|
const staticRemotesConfig = (0, parse_static_remotes_config_1.parseStaticSsrRemotesConfig)([...remotes.staticRemotes, ...remotes.dynamicRemotes], context);
|
62
62
|
const mappedLocationsOfStaticRemotes = await (0, build_static_remotes_1.buildStaticRemotes)(staticRemotesConfig, nxBin, context, options);
|
63
63
|
// Set NX_MF_DEV_REMOTES for the Nx Runtime Library Control Plugin
|
64
|
-
process.env.NX_MF_DEV_REMOTES = JSON.stringify(
|
64
|
+
process.env.NX_MF_DEV_REMOTES = JSON.stringify([
|
65
|
+
...(options.devRemotes ?? []),
|
66
|
+
project.name,
|
67
|
+
]);
|
65
68
|
const devRemotes = await (0, start_dev_remotes_1.startRemotes)(remotes.devRemotes, workspaceProjects, options, context);
|
66
69
|
const staticRemotes = (0, start_static_remotes_1.startStaticRemotes)(staticRemotesConfig, context, options);
|
67
70
|
(0, start_ssr_remote_proxies_1.startSsrRemoteProxies)(staticRemotesConfig, mappedLocationsOfStaticRemotes, options.ssl
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { E2eTestRunner, UnitTestRunner } from '../../../utils/test-runners';
|
2
2
|
import type { Schema } from '../schema';
|
3
|
-
import { Linter } from '@nx/eslint';
|
3
|
+
import { Linter, LinterType } from '@nx/eslint';
|
4
4
|
export interface NormalizedSchema extends Schema {
|
5
|
-
linter: Linter;
|
5
|
+
linter: Linter | LinterType;
|
6
6
|
unitTestRunner: UnitTestRunner;
|
7
7
|
e2eTestRunner: E2eTestRunner;
|
8
8
|
prefix: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
2
|
-
import type { Linter } from '@nx/eslint';
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
3
3
|
import type { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
|
4
4
|
import type { Styles } from '../utils/types';
|
5
5
|
|
@@ -17,7 +17,7 @@ export interface Schema {
|
|
17
17
|
directory?: string;
|
18
18
|
projectNameAndRootFormat?: ProjectNameAndRootFormat;
|
19
19
|
tags?: string;
|
20
|
-
linter?: Linter;
|
20
|
+
linter?: Linter | LinterType;
|
21
21
|
unitTestRunner?: UnitTestRunner;
|
22
22
|
e2eTestRunner?: E2eTestRunner;
|
23
23
|
backendProject?: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
2
|
-
import type { Linter } from '@nx/eslint';
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
3
3
|
import type { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
|
4
4
|
import type { Styles } from '../utils/types';
|
5
5
|
|
@@ -17,7 +17,7 @@ export interface Schema {
|
|
17
17
|
directory?: string;
|
18
18
|
projectNameAndRootFormat?: ProjectNameAndRootFormat;
|
19
19
|
tags?: string;
|
20
|
-
linter?: Linter;
|
20
|
+
linter?: Linter | LinterType;
|
21
21
|
unitTestRunner?: UnitTestRunner;
|
22
22
|
e2eTestRunner?: E2eTestRunner;
|
23
23
|
backendProject?: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UnitTestRunner } from '../../../utils/test-runners';
|
2
|
-
import type { Linter } from '@nx/eslint';
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
3
3
|
export interface NormalizedSchema {
|
4
4
|
libraryOptions: {
|
5
5
|
name: string;
|
@@ -26,7 +26,7 @@ export interface NormalizedSchema {
|
|
26
26
|
skipPackageJson?: boolean;
|
27
27
|
skipPostInstall?: boolean;
|
28
28
|
standalone?: boolean;
|
29
|
-
linter: Linter;
|
29
|
+
linter: Linter | LinterType;
|
30
30
|
unitTestRunner: UnitTestRunner;
|
31
31
|
prefix: string;
|
32
32
|
fileName: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
2
|
-
import type { Linter } from '@nx/eslint';
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
3
3
|
import type { UnitTestRunner } from '../../utils/test-runners';
|
4
4
|
|
5
5
|
export interface Schema {
|
@@ -24,7 +24,7 @@ export interface Schema {
|
|
24
24
|
parent?: string;
|
25
25
|
tags?: string;
|
26
26
|
strict?: boolean;
|
27
|
-
linter?: Linter;
|
27
|
+
linter?: Linter | LinterType;
|
28
28
|
unitTestRunner?: UnitTestRunner;
|
29
29
|
compilationMode?: 'full' | 'partial';
|
30
30
|
setParserOptionsProject?: boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Linter } from '@nx/eslint';
|
1
|
+
import { Linter, LinterType } from '@nx/eslint';
|
2
2
|
import { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
|
3
3
|
import type { Styles } from '../utils/types';
|
4
4
|
|
@@ -11,6 +11,6 @@ export interface GeneratorOptions {
|
|
11
11
|
skipInstall?: boolean;
|
12
12
|
skipPostInstall?: boolean;
|
13
13
|
style?: Styles;
|
14
|
-
linter?: Linter;
|
14
|
+
linter?: Linter | LinterType;
|
15
15
|
skipPackageJson?: boolean;
|
16
16
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
2
|
-
import type { Linter } from '@nx/eslint';
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
3
3
|
import type { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
|
4
4
|
import type { Styles } from '../utils/types';
|
5
5
|
|
@@ -16,7 +16,7 @@ export interface Schema {
|
|
16
16
|
directory?: string;
|
17
17
|
projectNameAndRootFormat?: ProjectNameAndRootFormat;
|
18
18
|
tags?: string;
|
19
|
-
linter?: Linter;
|
19
|
+
linter?: Linter | LinterType;
|
20
20
|
unitTestRunner?: UnitTestRunner;
|
21
21
|
e2eTestRunner?: E2eTestRunner;
|
22
22
|
backendProject?: string;
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import type { Linter } from '@nx/eslint';
|
1
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
2
2
|
|
3
3
|
export interface StorybookConfigurationOptions {
|
4
4
|
configureStaticServe?: boolean;
|
5
5
|
generateStories: boolean;
|
6
|
-
linter: Linter;
|
6
|
+
linter: Linter | LinterType;
|
7
7
|
project: string;
|
8
8
|
tsConfiguration?: boolean;
|
9
9
|
skipFormat?: boolean;
|
package/src/utils/versions.d.ts
CHANGED
@@ -2,7 +2,7 @@ export declare const nxVersion: any;
|
|
2
2
|
export declare const angularVersion = "~18.2.0";
|
3
3
|
export declare const angularDevkitVersion = "~18.2.0";
|
4
4
|
export declare const ngPackagrVersion = "~18.2.0";
|
5
|
-
export declare const ngrxVersion = "^18.0.
|
5
|
+
export declare const ngrxVersion = "^18.0.2";
|
6
6
|
export declare const rxjsVersion = "~7.8.0";
|
7
7
|
export declare const zoneJsVersion = "~0.14.3";
|
8
8
|
export declare const angularJsVersion = "1.7.9";
|
package/src/utils/versions.js
CHANGED
@@ -5,7 +5,7 @@ exports.nxVersion = require('../../package.json').version;
|
|
5
5
|
exports.angularVersion = '~18.2.0';
|
6
6
|
exports.angularDevkitVersion = '~18.2.0';
|
7
7
|
exports.ngPackagrVersion = '~18.2.0';
|
8
|
-
exports.ngrxVersion = '^18.0.
|
8
|
+
exports.ngrxVersion = '^18.0.2';
|
9
9
|
exports.rxjsVersion = '~7.8.0';
|
10
10
|
exports.zoneJsVersion = '~0.14.3';
|
11
11
|
exports.angularJsVersion = '1.7.9';
|