@angular/cli 19.2.1 → 19.2.3
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
|
@@ -2095,7 +2095,7 @@
|
|
|
2095
2095
|
"additionalProperties": false
|
|
2096
2096
|
},
|
|
2097
2097
|
"externalDependencies": {
|
|
2098
|
-
"description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime.",
|
|
2098
|
+
"description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime. Note: `@foo/bar` marks all paths within the `@foo/bar` package as external, including sub-paths like `@foo/bar/baz`.",
|
|
2099
2099
|
"type": "array",
|
|
2100
2100
|
"items": {
|
|
2101
2101
|
"type": "string"
|
|
@@ -3919,7 +3919,7 @@
|
|
|
3919
3919
|
"type": "object",
|
|
3920
3920
|
"properties": {
|
|
3921
3921
|
"exclude": {
|
|
3922
|
-
"description": "List of package imports that should not be prebundled by the development server. The packages will be bundled into the application code itself.",
|
|
3922
|
+
"description": "List of package imports that should not be prebundled by the development server. The packages will be bundled into the application code itself. Note: specifying `@foo/bar` marks all paths within the `@foo/bar` package as excluded, including sub-paths like `@foo/bar/baz`.",
|
|
3923
3923
|
"type": "array",
|
|
3924
3924
|
"items": {
|
|
3925
3925
|
"type": "string"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.3",
|
|
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.1902.
|
|
29
|
-
"@angular-devkit/core": "19.2.
|
|
30
|
-
"@angular-devkit/schematics": "19.2.
|
|
28
|
+
"@angular-devkit/architect": "0.1902.3",
|
|
29
|
+
"@angular-devkit/core": "19.2.3",
|
|
30
|
+
"@angular-devkit/schematics": "19.2.3",
|
|
31
31
|
"@inquirer/prompts": "7.3.2",
|
|
32
32
|
"@listr2/prompt-adapter-inquirer": "2.0.18",
|
|
33
|
-
"@schematics/angular": "19.2.
|
|
33
|
+
"@schematics/angular": "19.2.3",
|
|
34
34
|
"@yarnpkg/lockfile": "1.1.0",
|
|
35
35
|
"ini": "5.0.0",
|
|
36
36
|
"jsonc-parser": "3.3.1",
|
|
@@ -46,16 +46,17 @@
|
|
|
46
46
|
"ng-update": {
|
|
47
47
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
48
48
|
"packageGroup": {
|
|
49
|
-
"@angular/cli": "19.2.
|
|
50
|
-
"@angular/build": "19.2.
|
|
51
|
-
"@angular/ssr": "19.2.
|
|
52
|
-
"@angular-devkit/architect": "0.1902.
|
|
53
|
-
"@angular-devkit/build-angular": "19.2.
|
|
54
|
-
"@angular-devkit/build-webpack": "0.1902.
|
|
55
|
-
"@angular-devkit/core": "19.2.
|
|
56
|
-
"@angular-devkit/schematics": "19.2.
|
|
49
|
+
"@angular/cli": "19.2.3",
|
|
50
|
+
"@angular/build": "19.2.3",
|
|
51
|
+
"@angular/ssr": "19.2.3",
|
|
52
|
+
"@angular-devkit/architect": "0.1902.3",
|
|
53
|
+
"@angular-devkit/build-angular": "19.2.3",
|
|
54
|
+
"@angular-devkit/build-webpack": "0.1902.3",
|
|
55
|
+
"@angular-devkit/core": "19.2.3",
|
|
56
|
+
"@angular-devkit/schematics": "19.2.3"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
+
"packageManager": "pnpm@9.15.6",
|
|
59
60
|
"engines": {
|
|
60
61
|
"node": "^18.19.1 || ^20.11.1 || >=22.0.0",
|
|
61
62
|
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
@@ -178,21 +178,16 @@ let SchematicsCommandModule = (() => {
|
|
|
178
178
|
workflow.registry.addSmartDefaultProvider('projectName', () => this.getProjectName());
|
|
179
179
|
const workingDir = (0, core_1.normalize)((0, node_path_1.relative)(this.context.root, process.cwd()));
|
|
180
180
|
workflow.registry.addSmartDefaultProvider('workingDirectory', () => workingDir === '' ? undefined : workingDir);
|
|
181
|
-
let shouldReportAnalytics = true;
|
|
182
181
|
workflow.engineHost.registerOptionsTransform(async (schematic, options) => {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
[analytics_parameters_1.EventCustomDimension.SchematicName]: schematicName,
|
|
193
|
-
...this.getAnalyticsParameters(options),
|
|
194
|
-
});
|
|
195
|
-
}
|
|
182
|
+
const { collection: { name: collectionName }, name: schematicName, } = schematic;
|
|
183
|
+
const analytics = (0, analytics_1.isPackageNameSafeForAnalytics)(collectionName)
|
|
184
|
+
? await this.getAnalytics()
|
|
185
|
+
: undefined;
|
|
186
|
+
analytics?.reportSchematicRunEvent({
|
|
187
|
+
[analytics_parameters_1.EventCustomDimension.SchematicCollectionName]: collectionName,
|
|
188
|
+
[analytics_parameters_1.EventCustomDimension.SchematicName]: schematicName,
|
|
189
|
+
...this.getAnalyticsParameters(options),
|
|
190
|
+
});
|
|
196
191
|
return options;
|
|
197
192
|
});
|
|
198
193
|
if (options.interactive !== false && (0, tty_1.isTTY)()) {
|
package/src/utilities/version.js
CHANGED