webpack/lib/node/NodeChunkTemplatePlugin.js

32 lines
699 B
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const ConcatSource = require("webpack-sources").ConcatSource;
class NodeChunkTemplatePlugin {
apply(chunkTemplate) {
2018-02-25 09:00:20 +08:00
chunkTemplate.hooks.render.tap(
"NodeChunkTemplatePlugin",
(modules, chunk) => {
const source = new ConcatSource();
source.add(
`exports.ids = ${JSON.stringify(chunk.ids)};\nexports.modules = `
);
source.add(modules);
source.add(";");
return source;
}
);
2017-12-14 04:35:39 +08:00
chunkTemplate.hooks.hash.tap("NodeChunkTemplatePlugin", hash => {
hash.update("node");
hash.update("3");
});
}
}
module.exports = NodeChunkTemplatePlugin;