diff --git a/packages/schematics/angular/package.json b/packages/schematics/angular/package.json index a929afdcd285..d1f498f98e1b 100644 --- a/packages/schematics/angular/package.json +++ b/packages/schematics/angular/package.json @@ -13,7 +13,8 @@ "./utility": "./utility/index.js", "./utility/*": "./utility/*.js", "./migrations/migration-collection.json": "./migrations/migration-collection.json", - "./*": "./*.js" + "./*": "./*.js", + "./private/components": "./private/components.js" }, "schematics": "./collection.json", "dependencies": { diff --git a/packages/schematics/angular/private/components.ts b/packages/schematics/angular/private/components.ts new file mode 100644 index 000000000000..d679f1cc35da --- /dev/null +++ b/packages/schematics/angular/private/components.ts @@ -0,0 +1,15 @@ +/** + * @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';