1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | export * from './transforms';
|
---|
9 | export { AssetPattern, AssetPatternClass as AssetPatternObject, Budget, CrossOrigin, ExtraEntryPoint, ExtraEntryPointClass as ExtraEntryPointObject, FileReplacement, OptimizationClass as OptimizationObject, OptimizationUnion, OutputHashing, Schema as BrowserBuilderOptions, SourceMapClass as SourceMapObject, SourceMapUnion, StylePreprocessorOptions, Type, } from './browser/schema';
|
---|
10 | export { buildWebpackBrowser as executeBrowserBuilder, BrowserBuilderOutput } from './browser';
|
---|
11 | export { serveWebpackBrowser as executeDevServerBuilder, DevServerBuilderOptions, DevServerBuilderOutput, } from './dev-server';
|
---|
12 | export { execute as executeExtractI18nBuilder, ExtractI18nBuilderOptions } from './extract-i18n';
|
---|
13 | export { execute as executeKarmaBuilder, KarmaBuilderOptions, KarmaConfigOptions } from './karma';
|
---|
14 | export { execute as executeProtractorBuilder, ProtractorBuilderOptions } from './protractor';
|
---|
15 | export { execute as executeServerBuilder, ServerBuilderOptions, ServerBuilderOutput, } from './server';
|
---|
16 | export { execute as executeNgPackagrBuilder, NgPackagrBuilderOptions } from './ng-packagr';
|
---|