@angular/cli 20.0.0-next.8 → 20.0.0-next.9

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.
@@ -1046,7 +1046,7 @@
1046
1046
  "type": "boolean",
1047
1047
  "default": false
1048
1048
  },
1049
- "experimentalZoneless": {
1049
+ "zoneless": {
1050
1050
  "description": "Generate an application that does not use `zone.js`.",
1051
1051
  "type": "boolean",
1052
1052
  "default": false
@@ -1813,7 +1813,7 @@
1813
1813
  "description": "Configure the initial application for Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering).",
1814
1814
  "type": "boolean"
1815
1815
  },
1816
- "experimentalZoneless": {
1816
+ "zoneless": {
1817
1817
  "description": "Create an initial application that does not utilize `zone.js`.",
1818
1818
  "type": "boolean",
1819
1819
  "default": false
@@ -4247,9 +4247,18 @@
4247
4247
  "type": "string",
4248
4248
  "description": "The name of the test runner to use for test execution.",
4249
4249
  "enum": [
4250
+ "karma",
4250
4251
  "vitest"
4251
4252
  ]
4252
4253
  },
4254
+ "browsers": {
4255
+ "description": "A list of browsers to use for test execution. If undefined, jsdom on Node.js will be used instead of a browser.",
4256
+ "type": "array",
4257
+ "items": {
4258
+ "type": "string"
4259
+ },
4260
+ "minItems": 1
4261
+ },
4253
4262
  "include": {
4254
4263
  "type": "array",
4255
4264
  "items": {
@@ -106,10 +106,6 @@ export type SchematicOptions = {
106
106
  * routing, styling, and testing.
107
107
  */
108
108
  export type AngularApplicationOptionsSchema = {
109
- /**
110
- * Generate an application that does not use `zone.js`.
111
- */
112
- experimentalZoneless?: boolean;
113
109
  /**
114
110
  * Include the styles for the root component directly within the `app.component.ts` file.
115
111
  * Only CSS styles can be included inline. By default, a separate stylesheet file (e.g.,
@@ -186,6 +182,10 @@ export type AngularApplicationOptionsSchema = {
186
182
  * component styles are scoped and applied.
187
183
  */
188
184
  viewEncapsulation?: ViewEncapsulation;
185
+ /**
186
+ * Generate an application that does not use `zone.js`.
187
+ */
188
+ zoneless?: boolean;
189
189
  };
190
190
  /**
191
191
  * The type of stylesheet files to be created for components in the application.
@@ -688,10 +688,6 @@ export type AngularNgNewOptionsSchema = {
688
688
  * the workspace will be created in the current directory.
689
689
  */
690
690
  directory?: string;
691
- /**
692
- * Create an initial application that does not utilize `zone.js`.
693
- */
694
- experimentalZoneless?: boolean;
695
691
  /**
696
692
  * Include the styles for the initial application's root component directly within the
697
693
  * `app.component.ts` file. By default, a separate stylesheet file (e.g.,
@@ -778,6 +774,10 @@ export type AngularNgNewOptionsSchema = {
778
774
  * encapsulated using Shadow DOM).
779
775
  */
780
776
  viewEncapsulation?: ViewEncapsulation;
777
+ /**
778
+ * Create an initial application that does not utilize `zone.js`.
779
+ */
780
+ zoneless?: boolean;
781
781
  };
782
782
  /**
783
783
  * Configure the initial Git commit for the new repository.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "20.0.0-next.8",
3
+ "version": "20.0.0-next.9",
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.2000.0-next.8",
29
- "@angular-devkit/core": "20.0.0-next.8",
30
- "@angular-devkit/schematics": "20.0.0-next.8",
31
- "@inquirer/prompts": "7.4.1",
28
+ "@angular-devkit/architect": "0.2000.0-next.9",
29
+ "@angular-devkit/core": "20.0.0-next.9",
30
+ "@angular-devkit/schematics": "20.0.0-next.9",
31
+ "@inquirer/prompts": "7.5.0",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.21",
33
- "@schematics/angular": "20.0.0-next.8",
33
+ "@schematics/angular": "20.0.0-next.9",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "5.0.0",
36
36
  "jsonc-parser": "3.3.1",
@@ -45,14 +45,14 @@
45
45
  "ng-update": {
46
46
  "migrations": "@schematics/angular/migrations/migration-collection.json",
47
47
  "packageGroup": {
48
- "@angular/cli": "20.0.0-next.8",
49
- "@angular/build": "20.0.0-next.8",
50
- "@angular/ssr": "20.0.0-next.8",
51
- "@angular-devkit/architect": "0.2000.0-next.8",
52
- "@angular-devkit/build-angular": "20.0.0-next.8",
53
- "@angular-devkit/build-webpack": "0.2000.0-next.8",
54
- "@angular-devkit/core": "20.0.0-next.8",
55
- "@angular-devkit/schematics": "20.0.0-next.8"
48
+ "@angular/cli": "20.0.0-next.9",
49
+ "@angular/build": "20.0.0-next.9",
50
+ "@angular/ssr": "20.0.0-next.9",
51
+ "@angular-devkit/architect": "0.2000.0-next.9",
52
+ "@angular-devkit/build-angular": "20.0.0-next.9",
53
+ "@angular-devkit/build-webpack": "0.2000.0-next.9",
54
+ "@angular-devkit/core": "20.0.0-next.9",
55
+ "@angular-devkit/schematics": "20.0.0-next.9"
56
56
  }
57
57
  },
58
58
  "packageManager": "pnpm@9.15.6",
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('20.0.0-next.8');
25
+ exports.VERSION = new Version('20.0.0-next.9');