@nx/angular 19.8.2 → 19.8.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/angular",
3
- "version": "19.8.2",
3
+ "version": "19.8.3",
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.6.0",
83
- "@nx/devkit": "19.8.2",
84
- "@nx/js": "19.8.2",
85
- "@nx/eslint": "19.8.2",
86
- "@nx/webpack": "19.8.2",
87
- "@nx/web": "19.8.2",
88
- "@nx/workspace": "19.8.2",
83
+ "@nx/devkit": "19.8.3",
84
+ "@nx/js": "19.8.3",
85
+ "@nx/eslint": "19.8.3",
86
+ "@nx/webpack": "19.8.3",
87
+ "@nx/web": "19.8.3",
88
+ "@nx/workspace": "19.8.3",
89
89
  "piscina": "^4.4.0",
90
- "@nrwl/angular": "19.8.2"
90
+ "@nrwl/angular": "19.8.3"
91
91
  },
92
92
  "peerDependencies": {
93
93
  "@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
@@ -16,11 +16,11 @@ async function mergeCustomWebpackConfig(baseWebpackConfig, pathToWebpackConfig,
16
16
  // `module.exports = new Promise(...)`. If it exports a single object, but not a Promise,
17
17
  // then await will just resolve that object.
18
18
  const config = await customWebpackConfiguration;
19
- // The extra Webpack configuration file can export a synchronous or asynchronous function,
20
- // for instance: `module.exports = async config => { ... }`.
21
19
  let newConfig;
22
20
  if (typeof config === 'function') {
23
- newConfig = config(baseWebpackConfig, options, target);
21
+ // The extra Webpack configuration file can export a synchronous or asynchronous function,
22
+ // for instance: `module.exports = async config => { ... }`.
23
+ newConfig = await config(baseWebpackConfig, options, target);
24
24
  }
25
25
  else {
26
26
  newConfig = (0, webpack_merge_1.merge)(baseWebpackConfig, config);