From ba85c05b96c80d98f26ce53d249f822333537ee2 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Tue, 16 Jan 2024 09:59:50 +0000 Subject: [PATCH] refactor(@schematics/angular): remove private `/components` API Last usages of this API has been removed in https://github.com/angular/components/pull/28424 --- packages/schematics/angular/package.json | 3 +-- packages/schematics/angular/private/components.ts | 15 --------------- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 packages/schematics/angular/private/components.ts 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';