Skip to content

Commit

Permalink
Fix eslint issue (#5698)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Nov 19, 2020
1 parent dcfbd69 commit 67dea94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/compiler/utils/string_with_sourcemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,9 @@ export function combine_sourcemaps(
if (sourcefile === filename && sourcemap_list[map_idx]) {
return sourcemap_list[map_idx++]; // idx 1, 2, ...
// bundle file = branch node
} else {
return null; // source file = leaf node
}
else return null; // source file = leaf node
} as SourceMapLoader,
true
);
Expand Down

0 comments on commit 67dea94

Please sign in to comment.