-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathbuilder-status-warnings.ts
49 lines (44 loc) · 1.3 KB
/
builder-status-warnings.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { BuilderContext } from '@angular-devkit/architect';
import { Schema as WtrBuilderOptions } from './schema';
const UNSUPPORTED_OPTIONS: Array<keyof WtrBuilderOptions> = [
'main',
'assets',
'scripts',
'styles',
'inlineStyleLanguage',
'stylePreprocessorOptions',
'sourceMap',
'progress',
'poll',
'preserveSymlinks',
'browsers',
'codeCoverage',
'codeCoverageExclude',
'fileReplacements',
'webWorkerTsConfig',
'watch',
];
/** Logs a warning for any unsupported options specified. */
export function logBuilderStatusWarnings(options: WtrBuilderOptions, ctx: BuilderContext) {
// Validate supported options
for (const unsupportedOption of UNSUPPORTED_OPTIONS) {
const value = (options as unknown as WtrBuilderOptions)[unsupportedOption];
if (value === undefined || value === false) {
continue;
}
if (Array.isArray(value) && value.length === 0) {
continue;
}
if (typeof value === 'object' && Object.keys(value).length === 0) {
continue;
}
ctx.logger.warn(`The '${unsupportedOption}' option is not yet supported by this builder.`);
}
}