Skip to content

Commit

Permalink
fix(@ngtools/webpack): continue past invalid imports (#5028)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz authored and hansl committed Mar 1, 2017
1 parent 864d520 commit dbd71b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@ngtools/webpack/src/entry_resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function _symbolImportLookup(refactor: TypeScriptFileRefactor,
(decl.moduleSpecifier as ts.StringLiteral).text,
refactor.fileName, program.getCompilerOptions(), host);
if (!resolvedModule.resolvedModule || !resolvedModule.resolvedModule.resolvedFileName) {
return null;
continue;
}

const module = resolvedModule.resolvedModule.resolvedFileName;
Expand Down

0 comments on commit dbd71b7

Please sign in to comment.