mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 11:44:05 +08:00
BREAKING CHANGE: deprecated API's `ModuleNotFoundException`, `ResolveOptions`, `resolve` have been removed. Use `MODULE_NOT_FOUND` and `require.resolve` instead. **Note**: this change only effect users using `@angular-devkit/core` public API and not application developers.
17 lines
386 B
TypeScript
17 lines
386 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 experimental from './experimental/jobs/job-registry';
|
|
import * as fs from './fs';
|
|
export * from './cli-logger';
|
|
export * from './host';
|
|
|
|
export {
|
|
experimental,
|
|
fs,
|
|
};
|