json-q
Version:
Retrieves values from JSON objects (and JavaScript objects) by css-selector-like query (includes attribute filters and array flattening).
23 lines (20 loc) • 675 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var ConcatSource = require("webpack-core/lib/ConcatSource");
function NodeChunkTemplatePlugin() {}
module.exports = NodeChunkTemplatePlugin;
NodeChunkTemplatePlugin.prototype.apply = function(chunkTemplate) {
chunkTemplate.plugin("render", function(modules, chunk) {
var source = new ConcatSource();
source.add("exports.ids = " + JSON.stringify(chunk.ids) + ";\nexports.modules = ");
source.add(modules);
source.add(";");
return source;
});
chunkTemplate.plugin("hash", function(hash) {
hash.update("node");
hash.update("3");
});
};