@nx/angular 19.6.0-canary.20240725-3890edc → 19.6.0-canary.20240726-b3c67de
Sign up to get free protection for your applications and to get access to all the features.
- package/migrations.json +16 -0
- package/package.json +8 -8
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/migrations.json
CHANGED
@@ -2012,6 +2012,22 @@
|
|
2012
2012
|
"alwaysAddToPackageJson": false
|
2013
2013
|
}
|
2014
2014
|
}
|
2015
|
+
},
|
2016
|
+
"19.5.4-ngrx": {
|
2017
|
+
"version": "19.5.4-beta.0",
|
2018
|
+
"requires": {
|
2019
|
+
"@angular/core": "^18.0.0"
|
2020
|
+
},
|
2021
|
+
"packages": {
|
2022
|
+
"@ngrx/store": {
|
2023
|
+
"version": "^18.0.1",
|
2024
|
+
"alwaysAddToPackageJson": false
|
2025
|
+
},
|
2026
|
+
"@ngrx/operators": {
|
2027
|
+
"version": "^18.0.1",
|
2028
|
+
"alwaysAddToPackageJson": false
|
2029
|
+
}
|
2030
|
+
}
|
2015
2031
|
}
|
2016
2032
|
}
|
2017
2033
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/angular",
|
3
|
-
"version": "19.6.0-canary.
|
3
|
+
"version": "19.6.0-canary.20240726-b3c67de",
|
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": {
|
@@ -80,14 +80,14 @@
|
|
80
80
|
"webpack-merge": "^5.8.0",
|
81
81
|
"webpack": "^5.88.0",
|
82
82
|
"@module-federation/enhanced": "~0.2.3",
|
83
|
-
"@nx/devkit": "19.6.0-canary.
|
84
|
-
"@nx/js": "19.6.0-canary.
|
85
|
-
"@nx/eslint": "19.6.0-canary.
|
86
|
-
"@nx/webpack": "19.6.0-canary.
|
87
|
-
"@nx/web": "19.6.0-canary.
|
88
|
-
"@nx/workspace": "19.6.0-canary.
|
83
|
+
"@nx/devkit": "19.6.0-canary.20240726-b3c67de",
|
84
|
+
"@nx/js": "19.6.0-canary.20240726-b3c67de",
|
85
|
+
"@nx/eslint": "19.6.0-canary.20240726-b3c67de",
|
86
|
+
"@nx/webpack": "19.6.0-canary.20240726-b3c67de",
|
87
|
+
"@nx/web": "19.6.0-canary.20240726-b3c67de",
|
88
|
+
"@nx/workspace": "19.6.0-canary.20240726-b3c67de",
|
89
89
|
"piscina": "^4.4.0",
|
90
|
-
"@nrwl/angular": "19.6.0-canary.
|
90
|
+
"@nrwl/angular": "19.6.0-canary.20240726-b3c67de"
|
91
91
|
},
|
92
92
|
"peerDependencies": {
|
93
93
|
"@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
|
package/src/utils/versions.d.ts
CHANGED
@@ -2,7 +2,7 @@ export declare const nxVersion: any;
|
|
2
2
|
export declare const angularVersion = "~18.1.0";
|
3
3
|
export declare const angularDevkitVersion = "~18.1.0";
|
4
4
|
export declare const ngPackagrVersion = "~18.1.0";
|
5
|
-
export declare const ngrxVersion = "^18.0.
|
5
|
+
export declare const ngrxVersion = "^18.0.1";
|
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.1.0';
|
6
6
|
exports.angularDevkitVersion = '~18.1.0';
|
7
7
|
exports.ngPackagrVersion = '~18.1.0';
|
8
|
-
exports.ngrxVersion = '^18.0.
|
8
|
+
exports.ngrxVersion = '^18.0.1';
|
9
9
|
exports.rxjsVersion = '~7.8.0';
|
10
10
|
exports.zoneJsVersion = '~0.14.3';
|
11
11
|
exports.angularJsVersion = '1.7.9';
|