@nx/angular 19.2.0-canary.20240604-0594deb → 19.2.0-rc.0

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.2.0-canary.20240604-0594deb",
3
+ "version": "19.2.0-rc.0",
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.2.0-canary.20240604-0594deb",
83
- "@nx/js": "19.2.0-canary.20240604-0594deb",
84
- "@nx/eslint": "19.2.0-canary.20240604-0594deb",
85
- "@nx/webpack": "19.2.0-canary.20240604-0594deb",
86
- "@nx/web": "19.2.0-canary.20240604-0594deb",
87
- "@nx/workspace": "19.2.0-canary.20240604-0594deb",
82
+ "@nx/devkit": "19.2.0-rc.0",
83
+ "@nx/js": "19.2.0-rc.0",
84
+ "@nx/eslint": "19.2.0-rc.0",
85
+ "@nx/webpack": "19.2.0-rc.0",
86
+ "@nx/web": "19.2.0-rc.0",
87
+ "@nx/workspace": "19.2.0-rc.0",
88
88
  "piscina": "^4.4.0",
89
- "@nrwl/angular": "19.2.0-canary.20240604-0594deb"
89
+ "@nrwl/angular": "19.2.0-rc.0"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@angular-devkit/build-angular": ">= 16.0.0 < 19.0.0",
@@ -30,7 +30,7 @@ async function buildStaticRemotes(staticRemotesConfig, nxBin, context, options)
30
30
  stdio: ['ignore', 'pipe', 'pipe', 'ipc'],
31
31
  });
32
32
  // File to debug build failures e.g. 2024-01-01T00_00_0_0Z-build.log'
33
- const remoteBuildLogFile = (0, node_path_1.join)(cache_directory_1.projectGraphCacheDirectory, `${new Date().toISOString().replace(/[:\.]/g, '_')}-build.log`);
33
+ const remoteBuildLogFile = (0, node_path_1.join)(cache_directory_1.workspaceDataDirectory, `${new Date().toISOString().replace(/[:\.]/g, '_')}-build.log`);
34
34
  const stdoutStream = (0, node_fs_1.createWriteStream)(remoteBuildLogFile);
35
35
  staticProcess.stdout.on('data', (data) => {
36
36
  const ANSII_CODE_REGEX = /[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g;