Skip to content

Commit e114f5b

Browse files
committed
refactor(@angular/build): provide a default for the application index option
The application build system's `index` option is now considered optional. If not present, the value will be an `index.html` file within the configured project source root (`sourceRoot`). The default only applies to the short-form of the option. The object-based long-form continues to require explicit configuration of the input index HTML file. This change allows the removal of the `index` option from any project that uses the default generated value.
1 parent dce4bbf commit e114f5b

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export type ApplicationBuilderOptions = {
4040
fileReplacements?: FileReplacement[];
4141
i18nDuplicateTranslation?: I18NTranslation;
4242
i18nMissingTranslation?: I18NTranslation;
43-
index: IndexUnion;
43+
index?: IndexUnion;
4444
inlineStyleLanguage?: InlineStyleLanguage;
4545
loader?: {
4646
[key: string]: any;

packages/angular/build/src/builders/application/options.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,16 @@ export async function normalizeOptions(
332332
let indexHtmlOptions;
333333
// index can never have a value of `true` but in the schema it's of type `boolean`.
334334
if (typeof options.index !== 'boolean') {
335+
let indexInput: string;
335336
let indexOutput: string;
336337
// The output file will be created within the configured output path
337338
if (typeof options.index === 'string') {
338-
indexOutput = options.index;
339+
indexInput = indexOutput = options.index;
340+
} else if (typeof options.index === 'undefined') {
341+
indexInput = path.join(projectSourceRoot, 'index.html');
342+
indexOutput = 'index.html';
339343
} else {
344+
indexInput = options.index.input;
340345
indexOutput = options.index.output || 'index.html';
341346
}
342347

@@ -356,10 +361,7 @@ export async function normalizeOptions(
356361
: indexBaseName;
357362

358363
indexHtmlOptions = {
359-
input: path.join(
360-
workspaceRoot,
361-
typeof options.index === 'string' ? options.index : options.index.input,
362-
),
364+
input: path.join(workspaceRoot, indexInput),
363365
output: indexOutput,
364366
insertionOrder: [
365367
['polyfills', true],

packages/angular/build/src/builders/application/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
}
617617
},
618618
"additionalProperties": false,
619-
"required": ["index", "browser", "tsConfig"],
619+
"required": ["browser", "tsConfig"],
620620
"definitions": {
621621
"assetPattern": {
622622
"oneOf": [

packages/angular/build/src/builders/application/tests/options/index_spec.ts

+17
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,23 @@ describeBuilder(buildApplication, APPLICATION_BUILDER_INFO, (harness) => {
6262
harness.expectFile('dist/browser/index.html').content.toContain('TEST_123');
6363
});
6464

65+
it('should use the the index.html file within the project source root when not present', async () => {
66+
harness.useTarget('build', {
67+
...BASE_OPTIONS,
68+
index: undefined,
69+
});
70+
71+
await harness.writeFile(
72+
'src/index.html',
73+
'<html><head><title>TEST_123</title></head><body></body>',
74+
);
75+
76+
const { result } = await harness.executeOnce();
77+
78+
expect(result?.success).toBe(true);
79+
harness.expectFile('dist/browser/index.html').content.toContain('TEST_123');
80+
});
81+
6582
// TODO: Build needs to be fixed to not throw an unhandled exception for this case
6683
xit('should fail build when a string path to non-existent file', async () => {
6784
harness.useTarget('build', {

0 commit comments

Comments
 (0)