@nx/angular 20.3.0-canary.20241217-ee4de0b → 20.3.0-canary.20241219-2eb5243

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 CHANGED
@@ -1397,6 +1397,18 @@
1397
1397
  "alwaysAddToPackageJson": false
1398
1398
  }
1399
1399
  }
1400
+ },
1401
+ "20.2.3-ngrx": {
1402
+ "version": "20.3.0-beta.2",
1403
+ "requires": {
1404
+ "@angular/core": "^19.0.0"
1405
+ },
1406
+ "packages": {
1407
+ "@ngrx/store": {
1408
+ "version": "^19.0.0",
1409
+ "alwaysAddToPackageJson": false
1410
+ }
1411
+ }
1400
1412
  }
1401
1413
  }
1402
1414
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/angular",
3
- "version": "20.3.0-canary.20241217-ee4de0b",
3
+ "version": "20.3.0-canary.20241219-2eb5243",
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": {
@@ -71,13 +71,13 @@
71
71
  "semver": "^7.5.3",
72
72
  "tslib": "^2.3.0",
73
73
  "webpack-merge": "^5.8.0",
74
- "@nx/devkit": "20.3.0-canary.20241217-ee4de0b",
75
- "@nx/js": "20.3.0-canary.20241217-ee4de0b",
76
- "@nx/eslint": "20.3.0-canary.20241217-ee4de0b",
77
- "@nx/webpack": "20.3.0-canary.20241217-ee4de0b",
78
- "@nx/module-federation": "20.3.0-canary.20241217-ee4de0b",
79
- "@nx/web": "20.3.0-canary.20241217-ee4de0b",
80
- "@nx/workspace": "20.3.0-canary.20241217-ee4de0b",
74
+ "@nx/devkit": "20.3.0-canary.20241219-2eb5243",
75
+ "@nx/js": "20.3.0-canary.20241219-2eb5243",
76
+ "@nx/eslint": "20.3.0-canary.20241219-2eb5243",
77
+ "@nx/webpack": "20.3.0-canary.20241219-2eb5243",
78
+ "@nx/module-federation": "20.3.0-canary.20241219-2eb5243",
79
+ "@nx/web": "20.3.0-canary.20241219-2eb5243",
80
+ "@nx/workspace": "20.3.0-canary.20241219-2eb5243",
81
81
  "piscina": "^4.4.0"
82
82
  },
83
83
  "peerDependencies": {
@@ -54,7 +54,10 @@ function createNxJson(tree, options, defaultProject) {
54
54
  ]
55
55
  : []),
56
56
  ...(targets.lint
57
- ? ['!{projectRoot}/.eslintrc.json', '!{projectRoot}/eslint.config.js']
57
+ ? [
58
+ '!{projectRoot}/.eslintrc.json',
59
+ '!{projectRoot}/eslint.config.cjs',
60
+ ]
58
61
  : []),
59
62
  ].filter(Boolean),
60
63
  },
@@ -75,7 +78,7 @@ function createNxJson(tree, options, defaultProject) {
75
78
  inputs: [
76
79
  'default',
77
80
  '{workspaceRoot}/.eslintrc.json',
78
- '{workspaceRoot}/eslint.config.js',
81
+ '{workspaceRoot}/eslint.config.cjs',
79
82
  ],
80
83
  cache: true,
81
84
  }
@@ -2,7 +2,7 @@ export declare const nxVersion: any;
2
2
  export declare const angularVersion = "~19.0.0";
3
3
  export declare const angularDevkitVersion = "~19.0.0";
4
4
  export declare const ngPackagrVersion = "~19.0.0";
5
- export declare const ngrxVersion = "^18.0.2";
5
+ export declare const ngrxVersion = "^19.0.0";
6
6
  export declare const rxjsVersion = "~7.8.0";
7
7
  export declare const zoneJsVersion = "~0.15.0";
8
8
  export declare const angularJsVersion = "1.7.9";
@@ -5,7 +5,7 @@ exports.nxVersion = require('../../package.json').version;
5
5
  exports.angularVersion = '~19.0.0';
6
6
  exports.angularDevkitVersion = '~19.0.0';
7
7
  exports.ngPackagrVersion = '~19.0.0';
8
- exports.ngrxVersion = '^18.0.2';
8
+ exports.ngrxVersion = '^19.0.0';
9
9
  exports.rxjsVersion = '~7.8.0';
10
10
  exports.zoneJsVersion = '~0.15.0';
11
11
  exports.angularJsVersion = '1.7.9';