Skip to content

Commit

Permalink
refactor(@schematics/angular): move standalone component helpers to a…
Browse files Browse the repository at this point in the history
… private export for Angular components

The standalone component helper utilities introduced into the `@angular/cdk` via
angular/components#24931 have been added to an export path (`private/components`)
within `@schematics/angular`. The export path is primarily intended for the use of the components schematics
within `@angular/cdk` and `@angular/material`. The API exported from this path is not considered public API,
does not provide SemVer guarantees, and may be modified or removed without a deprecation cycle.
  • Loading branch information
clydin committed May 24, 2022
1 parent be67977 commit 1bf2de7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/schematics/angular/package.json
Expand Up @@ -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": {
Expand Down

0 comments on commit 1bf2de7

Please sign in to comment.