angular-cli/packages/angular_devkit/build_angular/src/utils/normalize-webpack-server-schema.ts
Hans Larsen 78f5c287d8 refactor(@angular-devkit/build-angular): clean up some interfaces and schemas
Remove the manually maintained schema.d.ts from the browser builder, and use
the Schema JSON file to generate it. This had a lot of repercussions around
the whole build-angular code base and the different interfaces that were
manually kept.
2019-02-21 16:20:54 -08:00

52 lines
1.6 KiB
TypeScript

/**
* @license
* Copyright Google Inc. 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.io/license
*/
import { Path, virtualFs } from '@angular-devkit/core';
import { OptimizationClass, SourceMapClass } from '../browser/schema';
import { BuildWebpackServerSchema } from '../server/schema';
import {
NormalizedFileReplacement,
normalizeFileReplacements,
} from './normalize-file-replacements';
import { normalizeOptimization } from './normalize-optimization';
import { normalizeSourceMaps } from './normalize-source-maps';
/**
* A normalized webpack server builder schema.
*/
export interface NormalizedWebpackServerBuilderSchema extends BuildWebpackServerSchema {
sourceMap: SourceMapClass;
fileReplacements: NormalizedFileReplacement[];
optimization: OptimizationClass;
}
export function normalizeWebpackServerSchema(
host: virtualFs.Host<{}>,
root: Path,
projectRoot: Path,
sourceRoot: Path | undefined,
options: BuildWebpackServerSchema,
): NormalizedWebpackServerBuilderSchema {
const syncHost = new virtualFs.SyncDelegateHost(host);
const normalizedSourceMapOptions = normalizeSourceMaps(options.sourceMap);
normalizedSourceMapOptions.vendor =
normalizedSourceMapOptions.vendor || options.vendorSourceMap || false;
const optimization = options.hasOwnProperty('optimization') && options.optimization || {};
return {
...options,
fileReplacements: normalizeFileReplacements(options.fileReplacements, syncHost, root),
optimization: normalizeOptimization(optimization),
sourceMap: normalizedSourceMapOptions,
};
}