2014-06-03 05:40:50 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2015-12-30 00:44:55 +08:00
|
|
|
var ConcatSource = require("webpack-sources").ConcatSource;
|
2014-06-03 05:40:50 +08:00
|
|
|
|
2015-07-13 06:20:09 +08:00
|
|
|
function JsonpChunkTemplatePlugin() {}
|
2014-06-03 05:40:50 +08:00
|
|
|
module.exports = JsonpChunkTemplatePlugin;
|
|
|
|
|
|
|
|
JsonpChunkTemplatePlugin.prototype.apply = function(chunkTemplate) {
|
|
|
|
chunkTemplate.plugin("render", function(modules, chunk) {
|
2016-01-15 02:40:04 +08:00
|
|
|
var jsonpFunction = this.outputOptions.jsonpFunction;
|
2014-06-03 05:40:50 +08:00
|
|
|
var source = new ConcatSource();
|
|
|
|
source.add(jsonpFunction + "(" + JSON.stringify(chunk.ids) + ",");
|
|
|
|
source.add(modules);
|
2016-07-13 17:03:14 +08:00
|
|
|
var entries = [chunk.entryModule].filter(Boolean).map(function(m) {
|
2015-07-25 21:00:05 +08:00
|
|
|
return m.id;
|
|
|
|
});
|
|
|
|
if(entries.length > 0) {
|
|
|
|
source.add("," + JSON.stringify(entries));
|
|
|
|
}
|
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 + "");
|
|
|
|
});
|
|
|
|
};
|