@angular/cli 15.0.3 → 15.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.
@@ -761,7 +761,7 @@
761
761
  "SchematicsAngularClassSchema": {
762
762
  "title": "Angular Class Options Schema",
763
763
  "type": "object",
764
- "description": "Creates a new, generic class definition in the given or default project.",
764
+ "description": "Creates a new, generic class definition in the given project.",
765
765
  "additionalProperties": false,
766
766
  "properties": {
767
767
  "name": {
@@ -802,7 +802,7 @@
802
802
  "SchematicsAngularComponentSchema": {
803
803
  "title": "Angular Component Options Schema",
804
804
  "type": "object",
805
- "description": "Creates a new, generic component definition in the given or default project.",
805
+ "description": "Creates a new, generic component definition in the given project.",
806
806
  "additionalProperties": false,
807
807
  "properties": {
808
808
  "path": {
@@ -943,7 +943,7 @@
943
943
  "SchematicsAngularDirectiveSchema": {
944
944
  "title": "Angular Directive Options Schema",
945
945
  "type": "object",
946
- "description": "Creates a new, generic directive definition in the given or default project.",
946
+ "description": "Creates a new, generic directive definition in the given project.",
947
947
  "additionalProperties": false,
948
948
  "properties": {
949
949
  "name": {
@@ -1024,7 +1024,7 @@
1024
1024
  "SchematicsAngularEnumSchema": {
1025
1025
  "title": "Angular Enum Options Schema",
1026
1026
  "type": "object",
1027
- "description": "Generates a new, generic enum definition for the given or default project.",
1027
+ "description": "Generates a new, generic enum definition in the given project.",
1028
1028
  "additionalProperties": false,
1029
1029
  "properties": {
1030
1030
  "name": {
@@ -1060,7 +1060,7 @@
1060
1060
  "SchematicsAngularGuardSchema": {
1061
1061
  "title": "Angular Guard Options Schema",
1062
1062
  "type": "object",
1063
- "description": "Generates a new, generic route guard definition in the given or default project.",
1063
+ "description": "Generates a new, generic route guard definition in the given project.",
1064
1064
  "additionalProperties": false,
1065
1065
  "properties": {
1066
1066
  "name": {
@@ -1122,7 +1122,7 @@
1122
1122
  "title": "Angular Interceptor Options Schema",
1123
1123
  "type": "object",
1124
1124
  "additionalProperties": false,
1125
- "description": "Creates a new, generic interceptor definition in the given or default project.",
1125
+ "description": "Creates a new, generic interceptor definition in the given project.",
1126
1126
  "properties": {
1127
1127
  "name": {
1128
1128
  "type": "string",
@@ -1164,7 +1164,7 @@
1164
1164
  "title": "Angular Interface Options Schema",
1165
1165
  "type": "object",
1166
1166
  "additionalProperties": false,
1167
- "description": "Creates a new, generic interface definition in the given or default project.",
1167
+ "description": "Creates a new, generic interface definition in the given project.",
1168
1168
  "properties": {
1169
1169
  "name": {
1170
1170
  "type": "string",
@@ -1257,7 +1257,7 @@
1257
1257
  "title": "Angular Pipe Options Schema",
1258
1258
  "type": "object",
1259
1259
  "additionalProperties": false,
1260
- "description": "Creates a new, generic pipe definition in the given or default project.",
1260
+ "description": "Creates a new, generic pipe definition in the given project.",
1261
1261
  "properties": {
1262
1262
  "name": {
1263
1263
  "type": "string",
@@ -1465,7 +1465,7 @@
1465
1465
  "title": "Angular resolver Options Schema",
1466
1466
  "type": "object",
1467
1467
  "additionalProperties": false,
1468
- "description": "Generates a new, generic resolver definition in the given or default project.",
1468
+ "description": "Generates a new, generic resolver definition in the given project.",
1469
1469
  "properties": {
1470
1470
  "name": {
1471
1471
  "type": "string",
@@ -1507,7 +1507,7 @@
1507
1507
  "title": "Angular Service Options Schema",
1508
1508
  "type": "object",
1509
1509
  "additionalProperties": false,
1510
- "description": "Creates a new, generic service definition in the given or default project.",
1510
+ "description": "Creates a new, generic service definition in the given project.",
1511
1511
  "properties": {
1512
1512
  "name": {
1513
1513
  "type": "string",
@@ -1548,7 +1548,7 @@
1548
1548
  "title": "Angular Web Worker Options Schema",
1549
1549
  "type": "object",
1550
1550
  "additionalProperties": false,
1551
- "description": "Creates a new, generic web worker definition in the given or default project.",
1551
+ "description": "Creates a new, generic web worker definition in the given project.",
1552
1552
  "properties": {
1553
1553
  "path": {
1554
1554
  "type": "string",
@@ -190,7 +190,7 @@ export declare enum ViewEncapsulation {
190
190
  ShadowDom = "ShadowDom"
191
191
  }
192
192
  /**
193
- * Creates a new, generic class definition in the given or default project.
193
+ * Creates a new, generic class definition in the given project.
194
194
  */
195
195
  export interface AngularClassOptionsSchema {
196
196
  /**
@@ -215,7 +215,7 @@ export interface AngularClassOptionsSchema {
215
215
  type?: string;
216
216
  }
217
217
  /**
218
- * Creates a new, generic component definition in the given or default project.
218
+ * Creates a new, generic component definition in the given project.
219
219
  */
220
220
  export interface AngularComponentOptionsSchema {
221
221
  /**
@@ -318,7 +318,7 @@ export declare enum SchematicsAngularComponentStyle {
318
318
  Scss = "scss"
319
319
  }
320
320
  /**
321
- * Creates a new, generic directive definition in the given or default project.
321
+ * Creates a new, generic directive definition in the given project.
322
322
  */
323
323
  export interface AngularDirectiveOptionsSchema {
324
324
  /**
@@ -368,7 +368,7 @@ export interface AngularDirectiveOptionsSchema {
368
368
  standalone?: boolean;
369
369
  }
370
370
  /**
371
- * Generates a new, generic enum definition for the given or default project.
371
+ * Generates a new, generic enum definition in the given project.
372
372
  */
373
373
  export interface AngularEnumOptionsSchema {
374
374
  /**
@@ -390,7 +390,7 @@ export interface AngularEnumOptionsSchema {
390
390
  type?: string;
391
391
  }
392
392
  /**
393
- * Generates a new, generic route guard definition in the given or default project.
393
+ * Generates a new, generic route guard definition in the given project.
394
394
  */
395
395
  export interface AngularGuardOptionsSchema {
396
396
  /**
@@ -427,7 +427,7 @@ export declare enum Implement {
427
427
  CanMatch = "CanMatch"
428
428
  }
429
429
  /**
430
- * Creates a new, generic interceptor definition in the given or default project.
430
+ * Creates a new, generic interceptor definition in the given project.
431
431
  */
432
432
  export interface AngularInterceptorOptionsSchema {
433
433
  /**
@@ -452,7 +452,7 @@ export interface AngularInterceptorOptionsSchema {
452
452
  skipTests?: boolean;
453
453
  }
454
454
  /**
455
- * Creates a new, generic interface definition in the given or default project.
455
+ * Creates a new, generic interface definition in the given project.
456
456
  */
457
457
  export interface AngularInterfaceOptionsSchema {
458
458
  /**
@@ -607,7 +607,7 @@ export interface CommitObject {
607
607
  name: string;
608
608
  }
609
609
  /**
610
- * Creates a new, generic pipe definition in the given or default project.
610
+ * Creates a new, generic pipe definition in the given project.
611
611
  */
612
612
  export interface AngularPipeOptionsSchema {
613
613
  /**
@@ -648,7 +648,7 @@ export interface AngularPipeOptionsSchema {
648
648
  standalone?: boolean;
649
649
  }
650
650
  /**
651
- * Generates a new, generic resolver definition in the given or default project.
651
+ * Generates a new, generic resolver definition in the given project.
652
652
  */
653
653
  export interface AngularResolverOptionsSchema {
654
654
  /**
@@ -674,7 +674,7 @@ export interface AngularResolverOptionsSchema {
674
674
  skipTests?: boolean;
675
675
  }
676
676
  /**
677
- * Creates a new, generic service definition in the given or default project.
677
+ * Creates a new, generic service definition in the given project.
678
678
  */
679
679
  export interface AngularServiceOptionsSchema {
680
680
  /**
@@ -699,7 +699,7 @@ export interface AngularServiceOptionsSchema {
699
699
  skipTests?: boolean;
700
700
  }
701
701
  /**
702
- * Creates a new, generic web worker definition in the given or default project.
702
+ * Creates a new, generic web worker definition in the given project.
703
703
  */
704
704
  export interface AngularWebWorkerOptionsSchema {
705
705
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "15.0.3",
3
+ "version": "15.0.5",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1500.3",
29
- "@angular-devkit/core": "15.0.3",
30
- "@angular-devkit/schematics": "15.0.3",
31
- "@schematics/angular": "15.0.3",
28
+ "@angular-devkit/architect": "0.1500.5",
29
+ "@angular-devkit/core": "15.0.5",
30
+ "@angular-devkit/schematics": "15.0.5",
31
+ "@schematics/angular": "15.0.5",
32
32
  "@yarnpkg/lockfile": "1.1.0",
33
33
  "ansi-colors": "4.1.3",
34
34
  "ini": "3.0.1",
@@ -47,12 +47,12 @@
47
47
  "ng-update": {
48
48
  "migrations": "@schematics/angular/migrations/migration-collection.json",
49
49
  "packageGroup": {
50
- "@angular/cli": "15.0.3",
51
- "@angular-devkit/architect": "0.1500.3",
52
- "@angular-devkit/build-angular": "15.0.3",
53
- "@angular-devkit/build-webpack": "0.1500.3",
54
- "@angular-devkit/core": "15.0.3",
55
- "@angular-devkit/schematics": "15.0.3"
50
+ "@angular/cli": "15.0.5",
51
+ "@angular-devkit/architect": "0.1500.5",
52
+ "@angular-devkit/build-angular": "15.0.5",
53
+ "@angular-devkit/build-webpack": "0.1500.5",
54
+ "@angular-devkit/core": "15.0.5",
55
+ "@angular-devkit/schematics": "15.0.5"
56
56
  }
57
57
  },
58
58
  "engines": {