Skip to content

Commit

Permalink
fix deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantd committed Feb 24, 2017
1 parent 8ab1c5f commit da2bc5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -7,7 +7,7 @@ var loaderUtils = require("loader-utils"),
module.exports = function() {};
module.exports.pitch = function(remainingRequest) {
if(this.cacheable) this.cacheable();
var query = loaderUtils.parseQuery(this.query);
var query = loaderUtils.getOptions(this) || {};
return [
"// style-loader: Adds some css to the DOM by adding a <style> tag",
"",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -12,6 +12,6 @@
},
"license": "MIT",
"dependencies": {
"loader-utils": "^0.2.7"
"loader-utils": "^1.0.2"
}
}
2 changes: 1 addition & 1 deletion useable.js
Expand Up @@ -7,7 +7,7 @@ var loaderUtils = require("loader-utils"),
module.exports = function() {};
module.exports.pitch = function(remainingRequest) {
if(this.cacheable) this.cacheable();
var query = loaderUtils.parseQuery(this.query);
var query = loaderUtils.getOptions(this) || {};
return [
"var refs = 0;",
"var dispose;",
Expand Down

0 comments on commit da2bc5a

Please sign in to comment.