We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12b32e1 + 4c2afc2 commit 229ec88Copy full SHA for 229ec88
index.js
@@ -18,7 +18,7 @@ function processOptions(source, options) {
18
return newSource;
19
}
20
21
-module.exports = function (source) {
+module.exports = function (source, map) {
22
this.cacheable();
23
24
var options = loaderUtils.getOptions(this);
@@ -32,5 +32,5 @@ module.exports = function (source) {
32
source = processOptions(source, options);
33
34
35
- return source;
+ this.callback(null, source, map);
36
};
0 commit comments