Skip to content

Commit 6fb410b

Browse files
fix(@ngtools/webpack): correct path to linker
Fixes #4346
1 parent 4e06612 commit 6fb410b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@ngtools/webpack/src/plugin.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ export class AotPlugin implements Tapable {
252252
return callback();
253253
}
254254

255-
// alter only request from @angular/core/src/linker
256-
if (!result.resource.endsWith(path.join('@angular/core/src/linker'))) {
255+
// alter only request from @angular/core/src/linker/src
256+
if (!result.resource.endsWith(path.join('@angular/core/src/linker/src'))) {
257257
return callback(null, result);
258258
}
259259

0 commit comments

Comments
 (0)