Skip to content

Commit c677e26

Browse files
committed
refactor(@angular-devkit/build-angular): allow development server buildTarget option to be optional
The development server (`dev-server`) within `@angular-devkit/build-angular` no longer requires a `buildTarget` option to be specified. If not present, the value will default to the current project's 'build' target. The configuration used for the build target will be the same as the development server configuration if specified or, if not specified, it will default to `development`.
1 parent 7701ee6 commit c677e26

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/angular_devkit/build_angular/src/builders/dev-server/options.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ export async function normalizeOptions(
3636

3737
const cacheOptions = normalizeCacheOptions(projectMetadata, workspaceRoot);
3838

39-
// Target specifier defaults to the current project's build target using a development configuration
40-
const buildTargetSpecifier = options.buildTarget ?? options.browserTarget ?? `::development`;
39+
// Target specifier defaults to the current project's build target using the provided dev-server
40+
// configuration if a configuration is present or the 'development' configuration if not.
41+
const buildTargetSpecifier =
42+
options.buildTarget ?? `::${context.target?.configuration || 'development'}`;
4143
const buildTarget = targetFromTargetString(buildTargetSpecifier, projectName, 'build');
4244

4345
// Get the application builder options.

packages/angular_devkit/build_angular/src/builders/dev-server/schema.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,5 @@
137137
]
138138
}
139139
},
140-
"additionalProperties": false,
141-
"anyOf": [{ "required": ["buildTarget"] }, { "required": ["browserTarget"] }]
140+
"additionalProperties": false
142141
}

0 commit comments

Comments
 (0)