You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: api-docs can display incorrect module for entry-point (#16470)
In some cases, an entry-point can export a deprecated NgModule. Currently
if that module is exported after all previous modules, it will show up in the docs
as recommended import. e.g. `import {ScrollDispatchModule} from '@angular/cdk/scrolling';`
This is causing confusion as the non-deprecated module should be used for rendering
the recommended import. This commit ensures that non-deprecated modules are
prioritized over deprecated modules and that specific modules can be explicitly
selected as primary module for an entry-point.
Fixes#16353.
0 commit comments