Skip to content

Commit

Permalink
fix(angular): fix @nx/angular/src/utils entry point (#22609)
Browse files Browse the repository at this point in the history
(cherry picked from commit 814d773)
  • Loading branch information
leosvelperez authored and FrozenPandaz committed Apr 2, 2024
1 parent 0006cd1 commit b224d65
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"./executors": "./executors.js",
"./tailwind": "./tailwind.js",
"./module-federation": "./module-federation/index.js",
"./src/utils": "./src/utils/public-api.js",
"./src/utils": "./src/utils/index.js",
"./plugins/component-testing": "./plugins/component-testing.js",
"./src/generators/utils": "./src/generators/utils/index.js",
"./src/generators/move/move-impl": "./src/generators/move/move-impl.js",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* Note to developers: STOP! These exports end up as the public API of @nx/angular/src/utils.
*
* Try hard to not add to this API to reduce the surface area we need to maintain.
*/

export {
isStandalone,
addImportToComponent,
Expand Down

0 comments on commit b224d65

Please sign in to comment.