Skip to content

Commit

Permalink
fix(@ngtools/webpack): correct path to linker
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikschubert committed Feb 9, 2017
1 parent 4e06612 commit 6fb410b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@ngtools/webpack/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ export class AotPlugin implements Tapable {
return callback();
}

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

Expand Down

0 comments on commit 6fb410b

Please sign in to comment.