/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var loaderUtils = require("loader-utils"), path = require("path"); module.exports = function() {}; module.exports.pitch = function(remainingRequest) { this.cacheable && this.cacheable(); var query = loaderUtils.getOptions(this) || {}; return [ "// style-loader: Adds some reference to a css file to the DOM by adding a tag", "var update = require(" + JSON.stringify("!" + path.join(__dirname, "addStyleUrl.js")) + ")(", "\trequire(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ")", ", " + JSON.stringify(query) + ");", "// Hot Module Replacement", "if(module.hot) {", "\tmodule.hot.accept(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ", function() {", "\t\tupdate(require(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + "));", "\t});", "\tmodule.hot.dispose(function() { update(); });", "}" ].join("\n"); };