mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
BREAKING CHANGE: Deprecated `@angular-devkit/core` terminal API has been removed. Use 3rd party packages like chalk, colors or ansi-colors instead. **Note:** this changes doesn't effect application developers
26 lines
629 B
TypeScript
26 lines
629 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
|
|
*/
|
|
import * as analytics from './analytics';
|
|
import * as experimental from './experimental';
|
|
import * as json from './json/index';
|
|
import * as logging from './logger/index';
|
|
import * as workspaces from './workspace';
|
|
|
|
export * from './exception/exception';
|
|
export * from './json/index';
|
|
export * from './utils/index';
|
|
export * from './virtual-fs/index';
|
|
|
|
export {
|
|
analytics,
|
|
experimental,
|
|
json,
|
|
logging,
|
|
workspaces,
|
|
};
|