@angular/cli 20.0.3 → 20.0.5

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.
@@ -1118,7 +1118,7 @@
1118
1118
  },
1119
1119
  "name": {
1120
1120
  "type": "string",
1121
- "description": "The name for the new component. This will be used to create the component's class, template, and stylesheet files. For example, if you provide `my-component`, the files will be named `my-component.component.ts`, `my-component.component.html`, and `my-component.component.css`.",
1121
+ "description": "The name for the new component. This will be used to create the component's class, template, and stylesheet files. For example, if you provide `my-component`, the files will be named `my-component.ts`, `my-component.html`, and `my-component.css`.",
1122
1122
  "$default": {
1123
1123
  "$source": "argv",
1124
1124
  "index": 0
@@ -1131,13 +1131,13 @@
1131
1131
  "alias": "b"
1132
1132
  },
1133
1133
  "inlineStyle": {
1134
- "description": "Include the component's styles directly in the `component.ts` file. By default, a separate stylesheet file (e.g., `my-component.component.css`) is created.",
1134
+ "description": "Include the component's styles directly in the `component.ts` file. By default, a separate stylesheet file (e.g., `my-component.css`) is created.",
1135
1135
  "type": "boolean",
1136
1136
  "default": false,
1137
1137
  "alias": "s"
1138
1138
  },
1139
1139
  "inlineTemplate": {
1140
- "description": "Include the component's HTML template directly in the `component.ts` file. By default, a separate template file (e.g., `my-component.component.html`) is created.",
1140
+ "description": "Include the component's HTML template directly in the `component.ts` file. By default, a separate template file (e.g., `my-component.html`) is created.",
1141
1141
  "type": "boolean",
1142
1142
  "default": false,
1143
1143
  "alias": "t"
@@ -278,12 +278,12 @@ export type AngularComponentOptionsSchema = {
278
278
  flat?: boolean;
279
279
  /**
280
280
  * Include the component's styles directly in the `component.ts` file. By default, a
281
- * separate stylesheet file (e.g., `my-component.component.css`) is created.
281
+ * separate stylesheet file (e.g., `my-component.css`) is created.
282
282
  */
283
283
  inlineStyle?: boolean;
284
284
  /**
285
285
  * Include the component's HTML template directly in the `component.ts` file. By default, a
286
- * separate template file (e.g., `my-component.component.html`) is created.
286
+ * separate template file (e.g., `my-component.html`) is created.
287
287
  */
288
288
  inlineTemplate?: boolean;
289
289
  /**
@@ -294,8 +294,7 @@ export type AngularComponentOptionsSchema = {
294
294
  /**
295
295
  * The name for the new component. This will be used to create the component's class,
296
296
  * template, and stylesheet files. For example, if you provide `my-component`, the files
297
- * will be named `my-component.component.ts`, `my-component.component.html`, and
298
- * `my-component.component.css`.
297
+ * will be named `my-component.ts`, `my-component.html`, and `my-component.css`.
299
298
  */
300
299
  name: string;
301
300
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "20.0.3",
3
+ "version": "20.0.5",
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.3",
29
- "@angular-devkit/core": "20.0.3",
30
- "@angular-devkit/schematics": "20.0.3",
28
+ "@angular-devkit/architect": "0.2000.5",
29
+ "@angular-devkit/core": "20.0.5",
30
+ "@angular-devkit/schematics": "20.0.5",
31
31
  "@inquirer/prompts": "7.5.1",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.22",
33
- "@schematics/angular": "20.0.3",
33
+ "@schematics/angular": "20.0.5",
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.3",
49
- "@angular/build": "20.0.3",
50
- "@angular/ssr": "20.0.3",
51
- "@angular-devkit/architect": "0.2000.3",
52
- "@angular-devkit/build-angular": "20.0.3",
53
- "@angular-devkit/build-webpack": "0.2000.3",
54
- "@angular-devkit/core": "20.0.3",
55
- "@angular-devkit/schematics": "20.0.3"
48
+ "@angular/cli": "20.0.5",
49
+ "@angular/build": "20.0.5",
50
+ "@angular/ssr": "20.0.5",
51
+ "@angular-devkit/architect": "0.2000.5",
52
+ "@angular-devkit/build-angular": "20.0.5",
53
+ "@angular-devkit/build-webpack": "0.2000.5",
54
+ "@angular-devkit/core": "20.0.5",
55
+ "@angular-devkit/schematics": "20.0.5"
56
56
  }
57
57
  },
58
58
  "packageManager": "pnpm@9.15.9",
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('20.0.3');
25
+ exports.VERSION = new Version('20.0.5');