@nx/angular 19.4.0-canary.20240621-472459d → 19.4.0-canary.20240626-3a2e8d4

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.4.0-canary.20240621-472459d",
3
+ "version": "19.4.0-canary.20240626-3a2e8d4",
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
  "tslib": "^2.3.0",
80
80
  "webpack": "^5.80.0",
81
81
  "webpack-merge": "^5.8.0",
82
- "@nx/devkit": "19.4.0-canary.20240621-472459d",
83
- "@nx/js": "19.4.0-canary.20240621-472459d",
84
- "@nx/eslint": "19.4.0-canary.20240621-472459d",
85
- "@nx/webpack": "19.4.0-canary.20240621-472459d",
86
- "@nx/web": "19.4.0-canary.20240621-472459d",
87
- "@nx/workspace": "19.4.0-canary.20240621-472459d",
82
+ "@nx/devkit": "19.4.0-canary.20240626-3a2e8d4",
83
+ "@nx/js": "19.4.0-canary.20240626-3a2e8d4",
84
+ "@nx/eslint": "19.4.0-canary.20240626-3a2e8d4",
85
+ "@nx/webpack": "19.4.0-canary.20240626-3a2e8d4",
86
+ "@nx/web": "19.4.0-canary.20240626-3a2e8d4",
87
+ "@nx/workspace": "19.4.0-canary.20240626-3a2e8d4",
88
88
  "piscina": "^4.4.0",
89
- "@nrwl/angular": "19.4.0-canary.20240621-472459d"
89
+ "@nrwl/angular": "19.4.0-canary.20240626-3a2e8d4"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
@@ -53,10 +53,10 @@ class AppMigrator extends project_migrator_1.ProjectMigrator {
53
53
  : undefined);
54
54
  }
55
55
  async migrate() {
56
+ await super.migrate();
56
57
  if (this.skipMigration === true) {
57
58
  return;
58
59
  }
59
- await super.migrate();
60
60
  this.updateProjectConfiguration();
61
61
  await this.e2eMigrator.migrate();
62
62
  this.moveProjectFiles();
@@ -16,10 +16,10 @@ class LibMigrator extends project_migrator_1.ProjectMigrator {
16
16
  super(tree, options, {}, project, 'libs', logger, supportedBuilderMigrators);
17
17
  }
18
18
  async migrate() {
19
+ await super.migrate();
19
20
  if (this.skipMigration === true) {
20
21
  return;
21
22
  }
22
- await super.migrate();
23
23
  await this.updateProjectConfiguration();
24
24
  this.moveProjectFiles();
25
25
  for (const builderMigrator of this.builderMigrators ?? []) {
@@ -1,8 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getProjectValidationResultMessage = exports.arrayToString = void 0;
4
- const tslib_1 = require("tslib");
5
- const chalk = tslib_1.__importStar(require("chalk"));
4
+ const chalk = require("chalk");
6
5
  function arrayToString(array) {
7
6
  if (array.length === 0) {
8
7
  return '';