@angular/cli 19.0.0-next.5 → 19.0.0-next.7

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/bin/bootstrap.js CHANGED
@@ -19,11 +19,15 @@
19
19
  */
20
20
 
21
21
  // Enable on-disk code caching if available (Node.js 22.8+)
22
- try {
23
- const { enableCompileCache } = require('node:module');
22
+ // Skip if running inside Bazel via a RUNFILES environment variable check. The cache does not work
23
+ // well with Bazel's hermeticity requirements.
24
+ if (!process.env['RUNFILES']) {
25
+ try {
26
+ const { enableCompileCache } = require('node:module');
24
27
 
25
- enableCompileCache?.();
26
- } catch {}
28
+ enableCompileCache?.();
29
+ } catch {}
30
+ }
27
31
 
28
32
  // Initialize the Angular CLI
29
33
  void import('../lib/init.js');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.0.0-next.5",
3
+ "version": "19.0.0-next.7",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,12 +25,12 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1900.0-next.5",
29
- "@angular-devkit/core": "19.0.0-next.5",
30
- "@angular-devkit/schematics": "19.0.0-next.5",
31
- "@inquirer/prompts": "5.5.0",
28
+ "@angular-devkit/architect": "0.1900.0-next.7",
29
+ "@angular-devkit/core": "19.0.0-next.7",
30
+ "@angular-devkit/schematics": "19.0.0-next.7",
31
+ "@inquirer/prompts": "6.0.1",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.15",
33
- "@schematics/angular": "19.0.0-next.5",
33
+ "@schematics/angular": "19.0.0-next.7",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "5.0.0",
36
36
  "jsonc-parser": "3.3.1",
@@ -46,14 +46,14 @@
46
46
  "ng-update": {
47
47
  "migrations": "@schematics/angular/migrations/migration-collection.json",
48
48
  "packageGroup": {
49
- "@angular/cli": "19.0.0-next.5",
50
- "@angular/build": "19.0.0-next.5",
51
- "@angular/ssr": "19.0.0-next.5",
52
- "@angular-devkit/architect": "0.1900.0-next.5",
53
- "@angular-devkit/build-angular": "19.0.0-next.5",
54
- "@angular-devkit/build-webpack": "0.1900.0-next.5",
55
- "@angular-devkit/core": "19.0.0-next.5",
56
- "@angular-devkit/schematics": "19.0.0-next.5"
49
+ "@angular/cli": "19.0.0-next.7",
50
+ "@angular/build": "19.0.0-next.7",
51
+ "@angular/ssr": "19.0.0-next.7",
52
+ "@angular-devkit/architect": "0.1900.0-next.7",
53
+ "@angular-devkit/build-angular": "19.0.0-next.7",
54
+ "@angular-devkit/build-webpack": "0.1900.0-next.7",
55
+ "@angular-devkit/core": "19.0.0-next.7",
56
+ "@angular-devkit/schematics": "19.0.0-next.7"
57
57
  }
58
58
  },
59
59
  "packageManager": "yarn@4.4.0",
@@ -25,5 +25,5 @@ class Version {
25
25
  }
26
26
  }
27
27
  // TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
28
- // export const VERSION = new Version('19.0.0-next.5');
28
+ // export const VERSION = new Version('19.0.0-next.7');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);