html-webpack-plugin/loader.js

20 lines
608 B
JavaScript

var _ = require('lodash');
var loaderUtils = require('loader-utils');
module.exports = function (source) {
'use strict';
if (this.cacheable) {
this.cacheable();
}
var allLoadersButThisOne = this.loaders.filter(function(loader) {
return loader.module !== module.exports;
});
// This loader shouldn't kick in if there is any other loader
if (allLoadersButThisOne.length > 0) {
return source;
}
// Use underscore for a minimalistic loader
var options = loaderUtils.parseQuery(this.query);
var template = _.template(source, options);
return 'module.exports = ' + template;
};