This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.js
More file actions
109 lines (100 loc) · 3.63 KB
/
index.js
File metadata and controls
109 lines (100 loc) · 3.63 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const path = require("path");
const fs = require("fs");
const NodeTemplatePlugin = require("webpack/lib/node/NodeTemplatePlugin");
const NodeTargetPlugin = require("webpack/lib/node/NodeTargetPlugin");
const LibraryTemplatePlugin = require("webpack/lib/LibraryTemplatePlugin");
const SingleEntryPlugin = require("webpack/lib/SingleEntryPlugin");
const LimitChunkCountPlugin = require("webpack/lib/optimize/LimitChunkCountPlugin");
const loaderUtils = require("loader-utils");
module.exports = function (source) {
if (this.cacheable) this.cacheable();
return source;
};
module.exports.pitch = function (request, prevRequest) {
if (this.cacheable) this.cacheable();
const callback = this.async();
if ([".js", ".ts"].indexOf(path.extname(request)) >= 0) {
produce(this, request, callback, loaderUtils.getLoaderConfig(this));
} else {
const parts = request.split("!");
const filename = parts[parts.length - 1];
this.addDependency(filename);
fs.readFile(filename, "utf8", callback);
}
};
function produce(loader, request, callback, config) {
const childFilename = "value-output-filename";
const outputOptions = { filename: childFilename };
const childCompiler = getRootCompilation(loader)
.createChildCompiler("value-compiler", outputOptions);
childCompiler.apply(new NodeTemplatePlugin(outputOptions));
childCompiler.apply(new LibraryTemplatePlugin(null, "commonjs2"));
childCompiler.apply(new NodeTargetPlugin());
childCompiler.apply(new SingleEntryPlugin(loader.context, `!!${request}`));
childCompiler.apply(new LimitChunkCountPlugin({ maxChunks: 1 }));
const subCache = `subcache ${__dirname} ${request}`;
childCompiler.plugin("compilation", (compilation) => {
if (compilation.cache) {
if (!compilation.cache[subCache])
{ compilation.cache[subCache] = {}; }
compilation.cache = compilation.cache[subCache];
}
});
// We set loaderContext[__dirname] = false to indicate we already in
// a child compiler so we don't spawn another child compilers from there.
childCompiler.plugin("this-compilation", (compilation) => {
compilation.plugin("normal-module-loader", (loaderContext) => {
loaderContext[__dirname] = false;
});
});
let source;
childCompiler.plugin("after-compile", (compilation, callback) => {
source = compilation.assets[childFilename] && compilation.assets[childFilename].source();
// Remove all chunk assets
compilation.chunks.forEach((chunk) => {
chunk.files.forEach((file) => {
delete compilation.assets[file];
});
});
callback();
});
childCompiler.runAsChild((err, entries, compilation) => {
if (err) return callback(err);
if (compilation.errors.length > 0) {
return callback(compilation.errors[0]);
}
if (!source) {
return callback(new Error("Didn't get a result from child compiler"));
}
compilation.fileDependencies.forEach((dep) => {
loader.addDependency(dep);
}, loader);
compilation.contextDependencies.forEach((dep) => {
loader.addContextDependency(dep);
}, loader);
let exports;
try {
exports = loader.exec(source, request);
} catch (e) {
return callback(e);
}
if (exports) {
const name = config.name;
if (name && name in exports) {
exports = exports[name];
}
callback(null, exports);
} else {
callback();
}
});
}
function getRootCompilation(loader) {
let compiler = loader._compiler;
let compilation = loader._compilation;
while (compiler.parentCompilation) {
compilation = compiler.parentCompilation;
compiler = compilation.compiler;
}
return compilation;
}