forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeChunkTemplatePlugin.js
More file actions
37 lines (32 loc) · 860 Bytes
/
Copy pathNodeChunkTemplatePlugin.js
File metadata and controls
37 lines (32 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const { ConcatSource } = require("webpack-sources");
/** @typedef {import("../ChunkTemplate")} ChunkTemplate */
class NodeChunkTemplatePlugin {
/**
* @param {ChunkTemplate} chunkTemplate the chunk template
* @returns {void}
*/
apply(chunkTemplate) {
chunkTemplate.hooks.render.tap(
"NodeChunkTemplatePlugin",
(modules, moduleTemplate, { chunk }) => {
const source = new ConcatSource();
source.add(
`exports.ids = ${JSON.stringify(chunk.ids)};\nexports.modules = `
);
source.add(modules);
source.add(";");
return source;
}
);
chunkTemplate.hooks.hash.tap("NodeChunkTemplatePlugin", hash => {
hash.update("node");
hash.update("3");
});
}
}
module.exports = NodeChunkTemplatePlugin;