@nx/angular 19.7.0-canary.20240823-1824267 → 19.7.0-canary.20240827-61ecd4b

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.7.0-canary.20240823-1824267",
3
+ "version": "19.7.0-canary.20240827-61ecd4b",
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.20240823-1824267",
83
- "@nx/js": "19.7.0-canary.20240823-1824267",
84
- "@nx/eslint": "19.7.0-canary.20240823-1824267",
85
- "@nx/webpack": "19.7.0-canary.20240823-1824267",
86
- "@nx/web": "19.7.0-canary.20240823-1824267",
87
- "@nx/workspace": "19.7.0-canary.20240823-1824267",
82
+ "@nx/devkit": "19.7.0-canary.20240827-61ecd4b",
83
+ "@nx/js": "19.7.0-canary.20240827-61ecd4b",
84
+ "@nx/eslint": "19.7.0-canary.20240827-61ecd4b",
85
+ "@nx/webpack": "19.7.0-canary.20240827-61ecd4b",
86
+ "@nx/web": "19.7.0-canary.20240827-61ecd4b",
87
+ "@nx/workspace": "19.7.0-canary.20240827-61ecd4b",
88
88
  "piscina": "^4.4.0",
89
- "@nrwl/angular": "19.7.0-canary.20240823-1824267"
89
+ "@nrwl/angular": "19.7.0-canary.20240827-61ecd4b"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.changeBuildTarget = changeBuildTarget;
4
4
  const devkit_1 = require("@nx/devkit");
5
+ const target_defaults_utils_1 = require("@nx/devkit/src/generators/target-defaults-utils");
5
6
  function changeBuildTarget(host, options) {
6
7
  const appConfig = (0, devkit_1.readProjectConfiguration)(host, options.appName);
7
8
  const configExtName = options.typescriptConfiguration ? 'ts' : 'js';
@@ -19,4 +20,5 @@ function changeBuildTarget(host, options) {
19
20
  },
20
21
  };
21
22
  (0, devkit_1.updateProjectConfiguration)(host, options.appName, appConfig);
23
+ (0, target_defaults_utils_1.addBuildTargetDefaults)(host, '@nx/angular:webpack-browser');
22
24
  }