forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
29 lines (26 loc) · 817 Bytes
/
Copy pathindex.ts
File metadata and controls
29 lines (26 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* @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 ɵterminal from './terminal/index';
import * as workspaces from './workspace';
export * from './exception/exception';
export * from './json/index';
export * from './utils/index';
export * from './virtual-fs/index';
/** @deprecated since version 8 - Instead use other 3rd party libraries like `colors` and `chalk`. */
export const terminal = ɵterminal;
export {
analytics,
experimental,
json,
logging,
workspaces,
};