Merge pull request #4790 from peterm0x/master

fixes invalid line offsets in merged sourcemaps
This commit is contained in:
Logan Smyth
2017-01-15 14:36:33 -08:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ module.exports = function (commander, filenames, opts) {
}
});
offset = code.split("\n").length;
offset = code.split("\n").length -1;
}
});