@nx/enforce-module-boundaries
recommends changes that break build of Angular library with secondary entry-points
#30473
Labels
scope: angular
Issues related to Angular support in Nx
scope: linter
Issues related to Eslint support in Nx
type: bug
Current Behavior
When an Angular library has multiple entry-points, imports that cross the boundaries of those entry-points must be specified by package name, e.g.:
Otherwise, attempting to build the library can fail with an extremely cryptic error message.
But the correct, package-specified imports are flagged by this ESLint rule:
Expected Behavior
@nx/enforce-module-boundaries
should do one of:To be honest, I don't really understand why this check is part of this lint rule. The documentation says nothing at all about imports from within the same project — the purpose of this rule, as I understand it, is to enforce which projects are permitted to import symbols from which other projects. Including this secondary check just forces the user to disable the rule entirely if they don't want this behavior (or, in this more extreme case, if making the recommended change breaks something).
GitHub Repo
https://github.com/dannymcgee/electric/tree/cbeb736442d24a972a5a3be133e5eb3addb745f6
Steps to Reproduce
npx nx build components
Nx Report
Failure Logs
Package Manager Version
No response
Operating System
Additional Information
Apologies the linked repo is not exactly a minimal reproduction. I ran into this issue after migrating from Nx and Angular v13 over the course of a few days. It's possible that the sequence of migrations left my
components
library in a state that would be uncommon to see nowadays and that the error is partly a result of that.The text was updated successfully, but these errors were encountered: