feat(@angular-devkit/core): add json namespace export

This commit is contained in:
Hans 2018-08-14 11:11:30 -07:00
parent 15b9ccb14c
commit 055a157356

View File

@ -6,6 +6,7 @@
* found in the LICENSE file at https://angular.io/license * found in the LICENSE file at https://angular.io/license
*/ */
import * as experimental from './experimental'; import * as experimental from './experimental';
import * as json from './json';
import * as logging from './logger'; import * as logging from './logger';
import * as terminal from './terminal'; import * as terminal from './terminal';
@ -16,6 +17,7 @@ export * from './virtual-fs';
export { export {
experimental, experimental,
json,
logging, logging,
terminal, terminal,
}; };