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

Commit c595998

Browse files
committed
Merge pull request #25 from jordansexton/patch-1
Removed "path" require (unused variable & dep)
2 parents 9cda561 + bcb5930 commit c595998

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Author Tobias Koppers @sokra
44
*/
55
var loaderUtils = require("loader-utils");
6-
var path = require("path");
76

87
module.exports = function(content) {
98
this.cacheable && this.cacheable();
@@ -17,4 +16,4 @@ module.exports = function(content) {
1716
this.emitFile(url, content);
1817
return "module.exports = __webpack_public_path__ + " + JSON.stringify(url);
1918
}
20-
module.exports.raw = true;
19+
module.exports.raw = true;

0 commit comments

Comments
 (0)