@angular/cli 20.1.3 → 20.2.0-next.1

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.
@@ -4272,7 +4272,7 @@
4272
4272
  ]
4273
4273
  },
4274
4274
  "browsers": {
4275
- "description": "A list of browsers to use for test execution. If undefined, jsdom on Node.js will be used instead of a browser.",
4275
+ "description": "A list of browsers to use for test execution. If undefined, jsdom on Node.js will be used instead of a browser. For Vitest and Karma, browser names ending with 'Headless' (e.g., 'ChromeHeadless') will enable headless mode for that browser.",
4276
4276
  "type": "array",
4277
4277
  "items": {
4278
4278
  "type": "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "20.1.3",
3
+ "version": "20.2.0-next.1",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,37 +25,37 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.2001.3",
29
- "@angular-devkit/core": "20.1.3",
30
- "@angular-devkit/schematics": "20.1.3",
31
- "@inquirer/prompts": "7.6.0",
32
- "@listr2/prompt-adapter-inquirer": "2.0.22",
33
- "@modelcontextprotocol/sdk": "1.13.3",
34
- "@schematics/angular": "20.1.3",
28
+ "@angular-devkit/architect": "0.2002.0-next.1",
29
+ "@angular-devkit/core": "20.2.0-next.1",
30
+ "@angular-devkit/schematics": "20.2.0-next.1",
31
+ "@inquirer/prompts": "7.7.1",
32
+ "@listr2/prompt-adapter-inquirer": "3.0.1",
33
+ "@modelcontextprotocol/sdk": "1.16.0",
34
+ "@schematics/angular": "20.2.0-next.1",
35
35
  "@yarnpkg/lockfile": "1.1.0",
36
- "algoliasearch": "5.32.0",
36
+ "algoliasearch": "5.34.0",
37
37
  "ini": "5.0.0",
38
38
  "jsonc-parser": "3.3.1",
39
- "listr2": "8.3.3",
39
+ "listr2": "9.0.1",
40
40
  "npm-package-arg": "12.0.2",
41
41
  "npm-pick-manifest": "10.0.0",
42
42
  "pacote": "21.0.0",
43
43
  "resolve": "1.22.10",
44
44
  "semver": "7.7.2",
45
45
  "yargs": "18.0.0",
46
- "zod": "3.25.75"
46
+ "zod": "3.25.76"
47
47
  },
48
48
  "ng-update": {
49
49
  "migrations": "@schematics/angular/migrations/migration-collection.json",
50
50
  "packageGroup": {
51
- "@angular/cli": "20.1.3",
52
- "@angular/build": "20.1.3",
53
- "@angular/ssr": "20.1.3",
54
- "@angular-devkit/architect": "0.2001.3",
55
- "@angular-devkit/build-angular": "20.1.3",
56
- "@angular-devkit/build-webpack": "0.2001.3",
57
- "@angular-devkit/core": "20.1.3",
58
- "@angular-devkit/schematics": "20.1.3"
51
+ "@angular/cli": "20.2.0-next.1",
52
+ "@angular/build": "20.2.0-next.1",
53
+ "@angular/ssr": "20.2.0-next.1",
54
+ "@angular-devkit/architect": "0.2002.0-next.1",
55
+ "@angular-devkit/build-angular": "20.2.0-next.1",
56
+ "@angular-devkit/build-webpack": "0.2002.0-next.1",
57
+ "@angular-devkit/core": "20.2.0-next.1",
58
+ "@angular-devkit/schematics": "20.2.0-next.1"
59
59
  }
60
60
  },
61
61
  "packageManager": "pnpm@9.15.9",
@@ -25,11 +25,15 @@ function subscribeToWorkflow(workflow, logger) {
25
25
  logger.error(`ERROR! ${eventPath} ${event.description == 'alreadyExist' ? 'already exists' : 'does not exist'}.`);
26
26
  break;
27
27
  case 'update':
28
- logs.push(`${color_1.colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
28
+ logs.push(
29
+ // TODO: `as unknown` was necessary during TS 5.9 update. Figure out a long-term solution.
30
+ `${color_1.colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
29
31
  files.add(eventPath);
30
32
  break;
31
33
  case 'create':
32
- logs.push(`${color_1.colors.green('CREATE')} ${eventPath} (${event.content.length} bytes)`);
34
+ logs.push(
35
+ // TODO: `as unknown` was necessary during TS 5.9 update. Figure out a long-term solution.
36
+ `${color_1.colors.green('CREATE')} ${eventPath} (${event.content.length} bytes)`);
33
37
  files.add(eventPath);
34
38
  break;
35
39
  case 'delete':
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('20.1.3');
25
+ exports.VERSION = new Version('20.2.0-next.1');