@angular/cli 19.0.0-next.0 → 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.
package/lib/config/schema.json
CHANGED
|
@@ -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
|
},
|
|
@@ -3726,12 +3731,6 @@
|
|
|
3726
3731
|
"description": "Dev Server target options for Build Facade.",
|
|
3727
3732
|
"type": "object",
|
|
3728
3733
|
"properties": {
|
|
3729
|
-
"browserTarget": {
|
|
3730
|
-
"type": "string",
|
|
3731
|
-
"description": "A browser builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3732
|
-
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
|
|
3733
|
-
"deprecated": true
|
|
3734
|
-
},
|
|
3735
3734
|
"buildTarget": {
|
|
3736
3735
|
"type": "string",
|
|
3737
3736
|
"description": "A build builder target to serve in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
@@ -3864,11 +3863,7 @@
|
|
|
3864
3863
|
]
|
|
3865
3864
|
}
|
|
3866
3865
|
},
|
|
3867
|
-
"additionalProperties": false
|
|
3868
|
-
"anyOf": [
|
|
3869
|
-
{},
|
|
3870
|
-
{}
|
|
3871
|
-
]
|
|
3866
|
+
"additionalProperties": false
|
|
3872
3867
|
},
|
|
3873
3868
|
"AngularBuildBuildersExtractI18nSchema": {
|
|
3874
3869
|
"title": "Extract i18n Target",
|
|
@@ -3917,12 +3912,6 @@
|
|
|
3917
3912
|
"description": "Extract i18n target options for Build Facade.",
|
|
3918
3913
|
"type": "object",
|
|
3919
3914
|
"properties": {
|
|
3920
|
-
"browserTarget": {
|
|
3921
|
-
"type": "string",
|
|
3922
|
-
"description": "A browser builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
3923
|
-
"pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$",
|
|
3924
|
-
"deprecated": true
|
|
3925
|
-
},
|
|
3926
3915
|
"buildTarget": {
|
|
3927
3916
|
"type": "string",
|
|
3928
3917
|
"description": "A builder target to extract i18n messages in the format of `project:target[:configuration]`. You can also pass in more than one configuration name as a comma-separated list. Example: `project:target:production,staging`.",
|
|
@@ -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.
|
|
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.
|
|
29
|
-
"@angular-devkit/core": "19.0.0-next.
|
|
30
|
-
"@angular-devkit/schematics": "19.0.0-next.
|
|
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.
|
|
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.
|
|
50
|
-
"@angular/build": "19.0.0-next.
|
|
51
|
-
"@angular/ssr": "19.0.0-next.
|
|
52
|
-
"@angular-devkit/architect": "0.1900.0-next.
|
|
53
|
-
"@angular-devkit/build-angular": "19.0.0-next.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1900.0-next.
|
|
55
|
-
"@angular-devkit/core": "19.0.0-next.
|
|
56
|
-
"@angular-devkit/schematics": "19.0.0-next.
|
|
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",
|
package/src/utilities/version.js
CHANGED
|
@@ -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.
|
|
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);
|