@nx/angular 21.1.0-canary.20250515-81ecb22 → 21.1.0-canary.20250516-7db44a8
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/migrations.json +9 -0
- package/package.json +9 -9
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/migrations.json
CHANGED
@@ -1615,6 +1615,15 @@
|
|
1615
1615
|
"alwaysAddToPackageJson": false
|
1616
1616
|
}
|
1617
1617
|
}
|
1618
|
+
},
|
1619
|
+
"21.1.0": {
|
1620
|
+
"version": "21.1.0-beta.1",
|
1621
|
+
"packages": {
|
1622
|
+
"@nx/angular-rspack": {
|
1623
|
+
"version": "^21.0.1",
|
1624
|
+
"alwaysAddToPackageJson": false
|
1625
|
+
}
|
1626
|
+
}
|
1618
1627
|
}
|
1619
1628
|
}
|
1620
1629
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "21.1.0-canary.
|
3
|
+
"version": "21.1.0-canary.20250516-7db44a8",
|
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": {
|
@@ -67,14 +67,14 @@
|
|
67
67
|
"semver": "^7.5.3",
|
68
68
|
"tslib": "^2.3.0",
|
69
69
|
"webpack-merge": "^5.8.0",
|
70
|
-
"@nx/devkit": "21.1.0-canary.
|
71
|
-
"@nx/js": "21.1.0-canary.
|
72
|
-
"@nx/eslint": "21.1.0-canary.
|
73
|
-
"@nx/webpack": "21.1.0-canary.
|
74
|
-
"@nx/rspack": "21.1.0-canary.
|
75
|
-
"@nx/module-federation": "21.1.0-canary.
|
76
|
-
"@nx/web": "21.1.0-canary.
|
77
|
-
"@nx/workspace": "21.1.0-canary.
|
70
|
+
"@nx/devkit": "21.1.0-canary.20250516-7db44a8",
|
71
|
+
"@nx/js": "21.1.0-canary.20250516-7db44a8",
|
72
|
+
"@nx/eslint": "21.1.0-canary.20250516-7db44a8",
|
73
|
+
"@nx/webpack": "21.1.0-canary.20250516-7db44a8",
|
74
|
+
"@nx/rspack": "21.1.0-canary.20250516-7db44a8",
|
75
|
+
"@nx/module-federation": "21.1.0-canary.20250516-7db44a8",
|
76
|
+
"@nx/web": "21.1.0-canary.20250516-7db44a8",
|
77
|
+
"@nx/workspace": "21.1.0-canary.20250516-7db44a8",
|
78
78
|
"piscina": "^4.4.0"
|
79
79
|
},
|
80
80
|
"peerDependencies": {
|
package/src/utils/versions.d.ts
CHANGED
@@ -2,7 +2,7 @@ export declare const nxVersion: any;
|
|
2
2
|
export declare const angularVersion = "~19.2.0";
|
3
3
|
export declare const angularDevkitVersion = "~19.2.0";
|
4
4
|
export declare const ngPackagrVersion = "~19.2.0";
|
5
|
-
export declare const angularRspackVersion = "^
|
5
|
+
export declare const angularRspackVersion = "^21.0.1";
|
6
6
|
export declare const ngrxVersion = "^19.0.0";
|
7
7
|
export declare const rxjsVersion = "~7.8.0";
|
8
8
|
export declare const zoneJsVersion = "~0.15.0";
|
package/src/utils/versions.js
CHANGED
@@ -5,7 +5,7 @@ exports.nxVersion = require('../../package.json').version;
|
|
5
5
|
exports.angularVersion = '~19.2.0';
|
6
6
|
exports.angularDevkitVersion = '~19.2.0';
|
7
7
|
exports.ngPackagrVersion = '~19.2.0';
|
8
|
-
exports.angularRspackVersion = '^
|
8
|
+
exports.angularRspackVersion = '^21.0.1';
|
9
9
|
exports.ngrxVersion = '^19.0.0';
|
10
10
|
exports.rxjsVersion = '~7.8.0';
|
11
11
|
exports.zoneJsVersion = '~0.15.0';
|