fix(bazel): don't equate moduleName with fileName (#20895)
Fixes broken material build. /cc @jelbourn PR Close #20895
This commit is contained in:
parent
d684f55423
commit
f05937db4d
|
@ -178,7 +178,7 @@ export function compile({allowNonHermeticReads, allDepsCompiledWithBazel = true,
|
||||||
return relativeToRootDirs(importedFilePath, compilerOpts.rootDirs).replace(EXT, '');
|
return relativeToRootDirs(importedFilePath, compilerOpts.rootDirs).replace(EXT, '');
|
||||||
};
|
};
|
||||||
ngHost.toSummaryFileName = (fileName: string, referringSrcFileName: string) =>
|
ngHost.toSummaryFileName = (fileName: string, referringSrcFileName: string) =>
|
||||||
ngHost.fileNameToModuleName(fileName, referringSrcFileName);
|
relativeToRootDirs(fileName, compilerOpts.rootDirs).replace(EXT, '');
|
||||||
if (allDepsCompiledWithBazel) {
|
if (allDepsCompiledWithBazel) {
|
||||||
// Note: The default implementation would work as well,
|
// Note: The default implementation would work as well,
|
||||||
// but we can be faster as we know how `toSummaryFileName` works.
|
// but we can be faster as we know how `toSummaryFileName` works.
|
||||||
|
|
Loading…
Reference in New Issue