Skip to content

Commit aa848cf

Browse files
committed
refactor(@angular/build): allow development server buildTarget option to be optional
The development server (`dev-server`) within `@angular/build` 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 ec19736 commit aa848cf

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

goldens/public-api/angular/build/index.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export enum BuildOutputFileType {
109109
// @public
110110
export type DevServerBuilderOptions = {
111111
allowedHosts?: AllowedHosts;
112-
buildTarget: string;
112+
buildTarget?: string;
113113
headers?: {
114114
[key: string]: string;
115115
};

packages/angular/build/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 ?? `::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/build/src/builders/dev-server/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@
127127
}
128128
},
129129
"additionalProperties": false,
130-
"required": ["buildTarget"]
130+
"required": []
131131
}

0 commit comments

Comments
 (0)