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: fix ngcc compatibility jobs not running against packages (#19161)
Ngcc changed how entry points are detected. In the current state,
they store a manifest of discovered packages and entry-points
in the node modules. This means that ngcc won't run for packages
we manually copy into the `node_modules` while a manifest exists.
To fix this for our job, we delete the manifest file. Also it looks
like MDC now has support for path mapping. This means that it will
use the tsconfig from the project root. This causes the release
packages to be resolved to the actual sources. We fix this by
disabling tsconfig parsing. Also it seems like we need to pass
a flag now so that ngcc will fail if compilation of an entry-point
did not complete successfully.
0 commit comments