Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit 49cad13

Browse files
committed
adding missing semicolon
the missing semicolon yields warning in lint tools.
1 parent 9cda561 commit 49cad13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ module.exports = function(content) {
1515
regExp: query.regExp
1616
});
1717
this.emitFile(url, content);
18-
return "module.exports = __webpack_public_path__ + " + JSON.stringify(url);
18+
return "module.exports = __webpack_public_path__ + " + JSON.stringify(url) + ";";
1919
}
20-
module.exports.raw = true;
20+
module.exports.raw = true;

0 commit comments

Comments
 (0)