Skip to content

Commit c98d251

Browse files
committed
fixed webpack#2577
1 parent 8ee43c8 commit c98d251

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/RecordIdsPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = RecordIdsPlugin;
1010
function makeRelative(compiler, identifier) {
1111
var context = compiler.context;
1212
return identifier.split("|").map(function(str) {
13-
return identifier.split("!").map(function(str) {
13+
return str.split("!").map(function(str) {
1414
return path.relative(context, str);
1515
}).join("!");
1616
}).join("|");

0 commit comments

Comments
 (0)