From 1bf2de778eb03a4cebcd18937f55eddf5bd581c1 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Tue, 24 May 2022 19:01:45 -0400 Subject: [PATCH] refactor(@schematics/angular): move standalone component helpers to a private export for Angular components The standalone component helper utilities introduced into the `@angular/cdk` via https://github.com/angular/components/pull/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. --- packages/schematics/angular/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/schematics/angular/package.json b/packages/schematics/angular/package.json index ba8e7cb75650..5bc3cc810fb1 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": {