@angular/cli 19.0.0-next.1 → 19.0.0-next.2

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.
@@ -1111,6 +1111,11 @@
1111
1111
  "type": "boolean",
1112
1112
  "default": false,
1113
1113
  "description": "The declaring NgModule exports this component."
1114
+ },
1115
+ "exportDefault": {
1116
+ "type": "boolean",
1117
+ "default": false,
1118
+ "description": "Use default export for the component instead of a named export."
1114
1119
  }
1115
1120
  }
1116
1121
  },
@@ -232,6 +232,10 @@ export interface AngularComponentOptionsSchema {
232
232
  * The declaring NgModule exports this component.
233
233
  */
234
234
  export?: boolean;
235
+ /**
236
+ * Use default export for the component instead of a named export.
237
+ */
238
+ exportDefault?: boolean;
235
239
  /**
236
240
  * Create the new files at the top level of the current project.
237
241
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.0.0-next.1",
3
+ "version": "19.0.0-next.2",
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.1",
29
- "@angular-devkit/core": "19.0.0-next.1",
30
- "@angular-devkit/schematics": "19.0.0-next.1",
28
+ "@angular-devkit/architect": "0.1900.0-next.2",
29
+ "@angular-devkit/core": "19.0.0-next.2",
30
+ "@angular-devkit/schematics": "19.0.0-next.2",
31
31
  "@inquirer/prompts": "5.3.8",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.15",
33
- "@schematics/angular": "19.0.0-next.1",
33
+ "@schematics/angular": "19.0.0-next.2",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "4.1.3",
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.1",
50
- "@angular/build": "19.0.0-next.1",
51
- "@angular/ssr": "19.0.0-next.1",
52
- "@angular-devkit/architect": "0.1900.0-next.1",
53
- "@angular-devkit/build-angular": "19.0.0-next.1",
54
- "@angular-devkit/build-webpack": "0.1900.0-next.1",
55
- "@angular-devkit/core": "19.0.0-next.1",
56
- "@angular-devkit/schematics": "19.0.0-next.1"
49
+ "@angular/cli": "19.0.0-next.2",
50
+ "@angular/build": "19.0.0-next.2",
51
+ "@angular/ssr": "19.0.0-next.2",
52
+ "@angular-devkit/architect": "0.1900.0-next.2",
53
+ "@angular-devkit/build-angular": "19.0.0-next.2",
54
+ "@angular-devkit/build-webpack": "0.1900.0-next.2",
55
+ "@angular-devkit/core": "19.0.0-next.2",
56
+ "@angular-devkit/schematics": "19.0.0-next.2"
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.1');
28
+ // export const VERSION = new Version('19.0.0-next.2');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);