Code coverage report for lib\node\NodeChunkTemplatePlugin.js

Statements: 100% (13 / 13)      Branches: 100% (0 / 0)      Functions: 100% (4 / 4)      Lines: 100% (13 / 13)      Ignored: none     

All files » lib\node\ » NodeChunkTemplatePlugin.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24        1   1   1   1 451 194 194 194 194 194   451 1095 1095      
/*
	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");
	});
};