mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-21 05:52:41 +08:00
Those 2 packages were still using the wrong scope (@angular-cli) and were not used by anyone outside the CLI. Just moving the code in the main package is enough.
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
// In order to keep refactoring low, simply export from ast-tools.
|
|
// TODO: move all dependencies of this file to ast-tools directly.
|
|
export {
|
|
getSource,
|
|
getSourceNodes,
|
|
findNodes,
|
|
insertAfterLastOccurrence,
|
|
getContentOfKeyLiteral,
|
|
getDecoratorMetadata,
|
|
addDeclarationToModule,
|
|
addProviderToModule,
|
|
addExportToModule
|
|
} from '../lib/ast-tools';
|