Skip to content

Commit 4fc5c6a

Browse files
clydindgp1130
authored andcommitted
Revert "refactor(@schematics/angular): remove private /components API"
The removed APIs are needed to support `ng add @angular/material@16` with Angular CLI v17. These APIs should be able to be safely removed with v18. This reverts commit 6a4d733. (cherry picked from commit 34481d0)
1 parent f2a2e92 commit 4fc5c6a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

packages/schematics/angular/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"./utility": "./utility/index.js",
1414
"./utility/*": "./utility/*.js",
1515
"./migrations/migration-collection.json": "./migrations/migration-collection.json",
16-
"./*": "./*.js"
16+
"./*": "./*.js",
17+
"./private/components": "./private/components.js"
1718
},
1819
"schematics": "./collection.json",
1920
"dependencies": {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export {
10+
addModuleImportToStandaloneBootstrap,
11+
addFunctionalProvidersToStandaloneBootstrap,
12+
callsProvidersFunction,
13+
findBootstrapApplicationCall,
14+
importsProvidersFrom,
15+
} from './standalone';

0 commit comments

Comments
 (0)