Alan Agius b1a5f49540 refactor(@angular-devkit/schematics): remove deprecated FileSystemHost
BREAKING CHANGE
Deprecated `FileSystemHost` has been removed. Use `Host` directly instead.

Note: this change only effects direct `@angular-devkit/schematics` users and not the application developers.
2020-04-22 10:38:38 -07:00

22 lines
680 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
*/
export * from './description';
export * from './export-ref';
export * from './file-system-engine-host-base';
export * from './workflow/node-workflow';
export { FileSystemEngineHost } from './file-system-engine-host';
export {
NodeModulesEngineHost,
NodePackageDoesNotSupportSchematics,
} from './node-module-engine-host';
export { NodeModulesTestEngineHost } from './node-modules-test-engine-host';
export { validateOptionsWithSchema } from './schema-option-transform';