mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
Previous ``` packages/angular_devkit/build_angular ├── plugins │ └── webpack └── src ├── angular-cli-files │ ├── models │ │ └── webpack-configs │ ├── plugins │ └── utilities │ ├── index-file │ └── service-worker ├── app-shell ├── browser │ └── specs ├── dev-server ├── extract-i18n ├── karma ├── ng-packagr ├── protractor ├── server ├── tslint ├── utils └── webpack └── models ``` Now ``` packages/angular_devkit/build_angular ├── plugins └── src ├── app-shell ├── browser │ └── specs ├── dev-server ├── extract-i18n ├── karma ├── ng-packagr ├── protractor ├── server ├── tslint ├── utils │ └── index-file └── webpack ├── configs ├── plugins └── utils ```
10 lines
262 B
TypeScript
10 lines
262 B
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
|
|
*/
|
|
|
|
module.exports = require('../src/webpack/plugins/karma');
|