2014-06-03 05:40:50 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
var ConcatSource = require("webpack-core/lib/ConcatSource");
|
2014-08-04 22:25:33 +08:00
|
|
|
var Template = require("./Template");
|
2014-06-03 05:40:50 +08:00
|
|
|
|
|
|
|
function JsonpChunkTemplatePlugin() {
|
|
|
|
}
|
|
|
|
module.exports = JsonpChunkTemplatePlugin;
|
|
|
|
|
|
|
|
JsonpChunkTemplatePlugin.prototype.apply = function(chunkTemplate) {
|
|
|
|
chunkTemplate.plugin("render", function(modules, chunk) {
|
2014-08-04 22:25:33 +08:00
|
|
|
var jsonpFunction = this.outputOptions.jsonpFunction || Template.toIdentifier("webpackJsonp" + (this.outputOptions.library || ""));
|
2014-06-03 05:40:50 +08:00
|
|
|
var source = new ConcatSource();
|
|
|
|
source.add(jsonpFunction + "(" + JSON.stringify(chunk.ids) + ",");
|
|
|
|
source.add(modules);
|
2015-03-04 03:07:16 +08:00
|
|
|
source.add(")");
|
2014-06-03 05:40:50 +08:00
|
|
|
return source;
|
|
|
|
});
|
|
|
|
chunkTemplate.plugin("hash", function(hash) {
|
|
|
|
hash.update("JsonpChunkTemplatePlugin");
|
|
|
|
hash.update("3");
|
|
|
|
hash.update(this.outputOptions.jsonpFunction + "");
|
|
|
|
hash.update(this.outputOptions.library + "");
|
|
|
|
});
|
|
|
|
};
|