Skip to content

Commit

Permalink
Fix single-line comments (ronami#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrupinski authored and ronami committed Jul 17, 2018
1 parent 9b2e7bc commit 45b1956
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/minipack.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ function bundle(graph) {
// be able to know which module in the graph corresponds to that relative
// path for this module.
modules += `${mod.id}: [
function (require, module, exports) { ${mod.code} },
function (require, module, exports) {
${mod.code}
},
${JSON.stringify(mod.mapping)},
],`;
});
Expand Down

0 comments on commit 45b1956

Please sign in to comment.