@angular/cli 11.2.3 → 11.2.4

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.
@@ -492,7 +492,8 @@
492
492
  "@angular-devkit/build-angular:karma",
493
493
  "@angular-devkit/build-angular:protractor",
494
494
  "@angular-devkit/build-angular:server",
495
- "@angular-devkit/build-angular:tslint"
495
+ "@angular-devkit/build-angular:tslint",
496
+ "@angular-devkit/build-angular:ng-packagr"
496
497
  ]
497
498
  }
498
499
  },
@@ -598,6 +599,17 @@
598
599
  "additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/tslint" }
599
600
  }
600
601
  }
602
+ },
603
+ {
604
+ "type": "object",
605
+ "properties": {
606
+ "builder": { "const": "@angular-devkit/build-angular:ng-packagr" },
607
+ "options": { "$ref": "#/definitions/targetOptions/definitions/ngPackagr" },
608
+ "configurations": {
609
+ "type": "object",
610
+ "additionalProperties": { "$ref": "#/definitions/targetOptions/definitions/ngPackagr" }
611
+ }
612
+ }
601
613
  }
602
614
  ]
603
615
  }
@@ -2101,6 +2113,29 @@
2101
2113
  }
2102
2114
  },
2103
2115
  "additionalProperties": false
2116
+ },
2117
+ "ngPackagr": {
2118
+ "description": "ng-packagr target options for Build Architect. Use to build library projects.",
2119
+ "type": "object",
2120
+ "properties": {
2121
+ "project": {
2122
+ "type": "string",
2123
+ "description": "The file path for the ng-packagr configuration file, relative to the current workspace."
2124
+ },
2125
+ "tsConfig": {
2126
+ "type": "string",
2127
+ "description": "The full path for the TypeScript configuration file, relative to the current workspace."
2128
+ },
2129
+ "watch": {
2130
+ "type": "boolean",
2131
+ "description": "Run build when files change.",
2132
+ "default": false
2133
+ }
2134
+ },
2135
+ "additionalProperties": false,
2136
+ "required": [
2137
+ "project"
2138
+ ]
2104
2139
  }
2105
2140
  }
2106
2141
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "11.2.3",
3
+ "version": "11.2.4",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -28,11 +28,11 @@
28
28
  },
29
29
  "homepage": "https://github.com/angular/angular-cli",
30
30
  "dependencies": {
31
- "@angular-devkit/architect": "0.1102.3",
32
- "@angular-devkit/core": "11.2.3",
33
- "@angular-devkit/schematics": "11.2.3",
34
- "@schematics/angular": "11.2.3",
35
- "@schematics/update": "0.1102.3",
31
+ "@angular-devkit/architect": "0.1102.4",
32
+ "@angular-devkit/core": "11.2.4",
33
+ "@angular-devkit/schematics": "11.2.4",
34
+ "@schematics/angular": "11.2.4",
35
+ "@schematics/update": "0.1102.4",
36
36
  "@yarnpkg/lockfile": "1.1.0",
37
37
  "ansi-colors": "4.1.1",
38
38
  "debug": "4.3.1",
@@ -54,12 +54,12 @@
54
54
  "ng-update": {
55
55
  "migrations": "@schematics/angular/migrations/migration-collection.json",
56
56
  "packageGroup": {
57
- "@angular/cli": "11.2.3",
58
- "@angular-devkit/architect": "0.1102.3",
59
- "@angular-devkit/build-angular": "0.1102.3",
60
- "@angular-devkit/build-webpack": "0.1102.3",
61
- "@angular-devkit/core": "11.2.3",
62
- "@angular-devkit/schematics": "11.2.3"
57
+ "@angular/cli": "11.2.4",
58
+ "@angular-devkit/architect": "0.1102.4",
59
+ "@angular-devkit/build-angular": "0.1102.4",
60
+ "@angular-devkit/build-webpack": "0.1102.4",
61
+ "@angular-devkit/core": "11.2.4",
62
+ "@angular-devkit/schematics": "11.2.4"
63
63
  }
64
64
  },
65
65
  "engines": {