diff --git a/packages/schematics/angular/package.json b/packages/schematics/angular/package.json index 3163b0dce9f0..284dcbc0608d 100644 --- a/packages/schematics/angular/package.json +++ b/packages/schematics/angular/package.json @@ -13,8 +13,7 @@ "./utility": "./utility/index.js", "./utility/*": "./utility/*.js", "./migrations/migration-collection.json": "./migrations/migration-collection.json", - "./*": "./*.js", - "./private/components": "./private/components.js" + "./*": "./*.js" }, "schematics": "./collection.json", "dependencies": { diff --git a/packages/schematics/angular/private/components.ts b/packages/schematics/angular/private/components.ts deleted file mode 100644 index d679f1cc35da..000000000000 --- a/packages/schematics/angular/private/components.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * @license - * Copyright Google LLC 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 { - addModuleImportToStandaloneBootstrap, - addFunctionalProvidersToStandaloneBootstrap, - callsProvidersFunction, - findBootstrapApplicationCall, - importsProvidersFrom, -} from './standalone';