refactor(ES6): upgrade NodeHotUpdateChunkTemplatePlugin to ES6 (#3795)

This commit is contained in:
Shubheksha Jalan 2017-01-08 09:37:59 +05:30 committed by Sean Larkin
parent 0e90586219
commit 5aa522d5be
1 changed files with 21 additions and 18 deletions

View File

@ -2,23 +2,26 @@
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var ConcatSource = require("webpack-sources").ConcatSource;
"use strict";
function NodeHotUpdateChunkTemplatePlugin() {}
const ConcatSource = require("webpack-sources").ConcatSource;
class NodeHotUpdateChunkTemplatePlugin {
apply(hotUpdateChunkTemplate) {
hotUpdateChunkTemplate.plugin("render", (modulesSource, modules, removedModules, hash, id) => {
const source = new ConcatSource();
source.add("exports.id = " + JSON.stringify(id) + ";\nexports.modules = ");
source.add(modulesSource);
source.add(";");
return source;
});
hotUpdateChunkTemplate.plugin("hash", function(hash) {
hash.update("NodeHotUpdateChunkTemplatePlugin");
hash.update("3");
hash.update(this.outputOptions.hotUpdateFunction + "");
hash.update(this.outputOptions.library + "");
});
}
}
module.exports = NodeHotUpdateChunkTemplatePlugin;
NodeHotUpdateChunkTemplatePlugin.prototype.apply = function(hotUpdateChunkTemplate) {
hotUpdateChunkTemplate.plugin("render", function(modulesSource, modules, removedModules, hash, id) {
var source = new ConcatSource();
source.add("exports.id = " + JSON.stringify(id) + ";\nexports.modules = ");
source.add(modulesSource);
source.add(";");
return source;
});
hotUpdateChunkTemplate.plugin("hash", function(hash) {
hash.update("NodeHotUpdateChunkTemplatePlugin");
hash.update("3");
hash.update(this.outputOptions.hotUpdateFunction + "");
hash.update(this.outputOptions.library + "");
});
};