mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-24 08:06:17 +08:00
The source code for the builders within the `@angular-devkit/build-webpack` package have been moved into a `builders` subdirectory to more closely align with the structure of the builders in the `@angular-devkit/build-angular` package. An initial `package.json` exports field definition has also been added that currently continues to allow deep imports.
12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
/**
|
|
* @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.io/license
|
|
*/
|
|
|
|
export * from './builders/webpack';
|
|
export * from './builders/webpack-dev-server';
|
|
export { EmittedFiles } from './utils';
|