@@ -120,8 +120,8 @@ function addDependenciesToPackageJson(options: ApplicationOptions) {
|
120 | 120 | },
|
121 | 121 | {
|
122 | 122 | type: NodeDependencyType.Dev,
|
123 |
| -name: '@angular-devkit/build-angular', |
124 |
| -version: latestVersions.DevkitBuildAngular, |
| 123 | +name: '@angular/build', |
| 124 | +version: latestVersions.AngularBuild, |
125 | 125 | },
|
126 | 126 | {
|
127 | 127 | type: NodeDependencyType.Dev,
|
@@ -234,7 +234,7 @@ function addAppToWorkspaceFile(
|
234 | 234 | schematics,
|
235 | 235 | targets: {
|
236 | 236 | build: {
|
237 |
| -builder: Builders.Application, |
| 237 | +builder: Builders.BuildApplication, |
238 | 238 | defaultConfiguration: 'production',
|
239 | 239 | options: {
|
240 | 240 | outputPath: `dist/${folderName}`,
|
@@ -260,7 +260,7 @@ function addAppToWorkspaceFile(
|
260 | 260 | },
|
261 | 261 | },
|
262 | 262 | serve: {
|
263 |
| -builder: Builders.DevServer, |
| 263 | +builder: Builders.BuildDevServer, |
264 | 264 | defaultConfiguration: 'development',
|
265 | 265 | options: {},
|
266 | 266 | configurations: {
|
@@ -273,12 +273,12 @@ function addAppToWorkspaceFile(
|
273 | 273 | },
|
274 | 274 | },
|
275 | 275 | 'extract-i18n': {
|
276 |
| -builder: Builders.ExtractI18n, |
| 276 | +builder: Builders.BuildExtractI18n, |
277 | 277 | },
|
278 | 278 | test: options.minimal
|
279 | 279 | ? undefined
|
280 | 280 | : {
|
281 |
| -builder: Builders.Karma, |
| 281 | +builder: Builders.BuildKarma, |
282 | 282 | options: {
|
283 | 283 | polyfills: options.experimentalZoneless ? [] : ['zone.js', 'zone.js/testing'],
|
284 | 284 | tsConfig: `${projectRoot}tsconfig.spec.json`,
|
|
0 commit comments