We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bit build
1 parent ae7f2e3 commit 1cbb352Copy full SHA for 1cbb352
packages/ng-packagr/ng-packagr.compiler.ts
@@ -223,6 +223,9 @@ export class NgPackagrCompiler implements Compiler {
223
const capsules = context.capsuleNetwork.seedersCapsules;
224
const componentsResults: ComponentResult[] = [];
225
226
+ // Process all node_modules folders (only works if the modules are hoisted)
227
+ this.nodeModulesPaths.forEach(path => this.ngccProcessor?.process(path));
228
+
229
await Promise.all(
230
context.components.map(async(component: Component) => {
231
const capsule = capsules.getCapsule(component.id);
0 commit comments