| 
10 | 10 |       "prefix": "lib",  | 
11 | 11 |       "architect": {  | 
12 | 12 |         "build": {  | 
13 |  | -          "builder": "@angular-devkit/build-angular:ng-packagr",  | 
 | 13 | +          "builder": "@angular/build:ng-packagr",  | 
14 | 14 |           "options": {  | 
15 | 15 |             "tsConfig": "projects/lib/tsconfig.lib.json",  | 
16 | 16 |             "project": "projects/lib/ng-package.json"  | 
 | 
41 | 41 |       "schematics": {},  | 
42 | 42 |       "architect": {  | 
43 | 43 |         "build": {  | 
44 |  | -          "builder": "@angular-devkit/build-angular:application",  | 
 | 44 | +          "builder": "@angular/build:application",  | 
45 | 45 |           "options": {  | 
46 | 46 |             "outputPath": {  | 
47 | 47 |               "base": "dist/sample",  | 
 | 
92 | 92 |           "defaultConfiguration": ""  | 
93 | 93 |         },  | 
94 | 94 |         "serve": {  | 
95 |  | -          "builder": "@angular-devkit/build-angular:dev-server",  | 
 | 95 | +          "builder": "@angular/build:dev-server",  | 
96 | 96 |           "options": {  | 
97 | 97 |             "buildTarget": "sample:build"  | 
98 | 98 |           },  | 
 | 
103 | 103 |           }  | 
104 | 104 |         },  | 
105 | 105 |         "extract-i18n": {  | 
106 |  | -          "builder": "@angular-devkit/build-angular:extract-i18n",  | 
 | 106 | +          "builder": "@angular/build:extract-i18n",  | 
107 | 107 |           "options": {  | 
108 | 108 |             "buildTarget": "sample:build"  | 
109 | 109 |           }  | 
110 | 110 |         },  | 
111 | 111 |         "test": {  | 
112 |  | -          "builder": "@angular-devkit/build-angular:karma",  | 
 | 112 | +          "builder": "@angular/build:karma",  | 
113 | 113 |           "options": {  | 
114 | 114 |             "main": "projects/sample/src/test.ts",  | 
115 |  | -            "polyfills": "projects/sample/src/polyfills.ts",  | 
 | 115 | +            "polyfills": [  | 
 | 116 | +              "projects/sample/src/polyfills.ts"  | 
 | 117 | +            ],  | 
116 | 118 |             "tsConfig": "projects/sample/tsconfig.spec.json",  | 
117 | 119 |             "karmaConfig": "projects/sample/karma.conf.js",  | 
118 | 120 |             "styles": [  | 
 | 
136 | 138 |       "prefix": "app",  | 
137 | 139 |       "architect": {  | 
138 | 140 |         "build": {  | 
139 |  | -          "builder": "@angular-devkit/build-angular:application",  | 
 | 141 | +          "builder": "@angular/build:application",  | 
140 | 142 |           "options": {  | 
141 | 143 |             "outputPath": {  | 
142 | 144 |               "base": "dist/quickstart-demo",  | 
 | 
152 | 154 |               "projects/quickstart-demo/src/favicon.ico",  | 
153 | 155 |               "projects/quickstart-demo/src/assets"  | 
154 | 156 |             ],  | 
155 |  | -            "styles": ["projects/quickstart-demo/src/styles.css"],  | 
 | 157 | +            "styles": [  | 
 | 158 | +              "projects/quickstart-demo/src/styles.css"  | 
 | 159 | +            ],  | 
156 | 160 |             "scripts": [],  | 
157 | 161 |             "extractLicenses": false,  | 
158 | 162 |             "sourceMap": true,  | 
 | 
186 | 190 |           "defaultConfiguration": ""  | 
187 | 191 |         },  | 
188 | 192 |         "serve": {  | 
189 |  | -          "builder": "@angular-devkit/build-angular:dev-server",  | 
 | 193 | +          "builder": "@angular/build:dev-server",  | 
190 | 194 |           "options": {  | 
191 | 195 |             "buildTarget": "quickstart-demo:build"  | 
192 | 196 |           },  | 
 | 
197 | 201 |           }  | 
198 | 202 |         },  | 
199 | 203 |         "extract-i18n": {  | 
200 |  | -          "builder": "@angular-devkit/build-angular:extract-i18n",  | 
 | 204 | +          "builder": "@angular/build:extract-i18n",  | 
201 | 205 |           "options": {  | 
202 | 206 |             "buildTarget": "quickstart-demo:build"  | 
203 | 207 |           }  | 
204 | 208 |         },  | 
205 | 209 |         "test": {  | 
206 |  | -          "builder": "@angular-devkit/build-angular:karma",  | 
 | 210 | +          "builder": "@angular/build:karma",  | 
207 | 211 |           "options": {  | 
208 | 212 |             "main": "projects/quickstart-demo/src/test.ts",  | 
209 |  | -            "polyfills": "projects/quickstart-demo/src/polyfills.ts",  | 
 | 213 | +            "polyfills": [  | 
 | 214 | +              "projects/quickstart-demo/src/polyfills.ts"  | 
 | 215 | +            ],  | 
210 | 216 |             "tsConfig": "projects/quickstart-demo/tsconfig.spec.json",  | 
211 | 217 |             "karmaConfig": "projects/quickstart-demo/karma.conf.js",  | 
212 | 218 |             "assets": [  | 
213 | 219 |               "projects/quickstart-demo/src/favicon.ico",  | 
214 | 220 |               "projects/quickstart-demo/src/assets"  | 
215 | 221 |             ],  | 
216 |  | -            "styles": ["projects/quickstart-demo/src/styles.css"],  | 
 | 222 | +            "styles": [  | 
 | 223 | +              "projects/quickstart-demo/src/styles.css"  | 
 | 224 | +            ],  | 
217 | 225 |             "scripts": []  | 
218 | 226 |           }  | 
219 | 227 |         }  | 
 | 
226 | 234 |       "prefix": "lib",  | 
227 | 235 |       "architect": {  | 
228 | 236 |         "build": {  | 
229 |  | -          "builder": "@angular-devkit/build-angular:ng-packagr",  | 
 | 237 | +          "builder": "@angular/build:ng-packagr",  | 
230 | 238 |           "options": {  | 
231 | 239 |             "tsConfig": "projects/angular-oauth2-oidc-jwks/tsconfig.lib.json",  | 
232 | 240 |             "project": "projects/angular-oauth2-oidc-jwks/ng-package.json"  | 
233 | 241 |           }  | 
234 | 242 |         },  | 
235 | 243 |         "test": {  | 
236 |  | -          "builder": "@angular-devkit/build-angular:karma",  | 
 | 244 | +          "builder": "@angular/build:karma",  | 
237 | 245 |           "options": {  | 
238 | 246 |             "main": "projects/angular-oauth2-oidc-jwks/src/test.ts",  | 
239 | 247 |             "tsConfig": "projects/angular-oauth2-oidc-jwks/tsconfig.spec.json",  | 
 | 
250 | 258 |       "prefix": "app",  | 
251 | 259 |       "architect": {  | 
252 | 260 |         "build": {  | 
253 |  | -          "builder": "@angular-devkit/build-angular:application",  | 
 | 261 | +          "builder": "@angular/build:application",  | 
254 | 262 |           "options": {  | 
255 | 263 |             "outputPath": {  | 
256 | 264 |               "base": "dist/quickstart-standalone",  | 
 | 
297 | 305 |           "defaultConfiguration": "production"  | 
298 | 306 |         },  | 
299 | 307 |         "serve": {  | 
300 |  | -          "builder": "@angular-devkit/build-angular:dev-server",  | 
 | 308 | +          "builder": "@angular/build:dev-server",  | 
301 | 309 |           "configurations": {  | 
302 | 310 |             "production": {  | 
303 | 311 |               "buildTarget": "quickstart-standalone:build:production"  | 
 | 
309 | 317 |           "defaultConfiguration": "development"  | 
310 | 318 |         },  | 
311 | 319 |         "extract-i18n": {  | 
312 |  | -          "builder": "@angular-devkit/build-angular:extract-i18n",  | 
 | 320 | +          "builder": "@angular/build:extract-i18n",  | 
313 | 321 |           "options": {  | 
314 | 322 |             "buildTarget": "quickstart-standalone:build"  | 
315 | 323 |           }  | 
316 | 324 |         },  | 
317 | 325 |         "test": {  | 
318 |  | -          "builder": "@angular-devkit/build-angular:karma",  | 
 | 326 | +          "builder": "@angular/build:karma",  | 
319 | 327 |           "options": {  | 
320 | 328 |             "polyfills": [  | 
321 | 329 |               "zone.js",  | 
 | 
337 | 345 |   },  | 
338 | 346 |   "schematics": {  | 
339 | 347 |     "@schematics/angular:component": {  | 
340 |  | -      "style": "css"  | 
 | 348 | +      "style": "css",  | 
 | 349 | +      "type": "component"  | 
 | 350 | +    },  | 
 | 351 | +    "@schematics/angular:directive": {  | 
 | 352 | +      "type": "directive"  | 
 | 353 | +    },  | 
 | 354 | +    "@schematics/angular:service": {  | 
 | 355 | +      "type": "service"  | 
 | 356 | +    },  | 
 | 357 | +    "@schematics/angular:guard": {  | 
 | 358 | +      "typeSeparator": "."  | 
 | 359 | +    },  | 
 | 360 | +    "@schematics/angular:interceptor": {  | 
 | 361 | +      "typeSeparator": "."  | 
 | 362 | +    },  | 
 | 363 | +    "@schematics/angular:module": {  | 
 | 364 | +      "typeSeparator": "."  | 
 | 365 | +    },  | 
 | 366 | +    "@schematics/angular:pipe": {  | 
 | 367 | +      "typeSeparator": "."  | 
 | 368 | +    },  | 
 | 369 | +    "@schematics/angular:resolver": {  | 
 | 370 | +      "typeSeparator": "."  | 
341 | 371 |     }  | 
342 | 372 |   },  | 
343 | 373 |   "cli": {  | 
344 | 374 |     "analytics": false,  | 
345 |  | -    "schematicCollections": ["@angular-eslint/schematics"],  | 
 | 375 | +    "schematicCollections": [  | 
 | 376 | +      "@angular-eslint/schematics"  | 
 | 377 | +    ],  | 
346 | 378 |     "packageManager": "npm"  | 
347 | 379 |   }  | 
348 | 380 | }  | 
0 commit comments