-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathloader.js
392 lines (324 loc) · 10.8 KB
/
loader.js
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import path from 'path';
import loaderUtils from 'loader-utils';
import { validate } from 'schema-utils';
import { findModuleById, evalModuleCode } from './utils';
import schema from './loader-options.json';
import MiniCssExtractPlugin, { pluginName, pluginSymbol } from './index';
function hotLoader(content, context) {
const accept = context.locals
? ''
: 'module.hot.accept(undefined, cssReload);';
return `${content}
if(module.hot) {
// ${Date.now()}
var cssReload = require(${loaderUtils.stringifyRequest(
context.context,
path.join(__dirname, 'hmr/hotModuleReplacement.js')
)})(module.id, ${JSON.stringify({
...context.options,
locals: !!context.locals,
})});
module.hot.dispose(cssReload);
${accept}
}
`;
}
export function pitch(request) {
const options = loaderUtils.getOptions(this) || {};
validate(schema, options, {
name: 'Mini CSS Extract Plugin Loader',
baseDataPath: 'options',
});
const callback = this.async();
const optionsFromPlugin = this[pluginSymbol];
if (!optionsFromPlugin) {
callback(
new Error(
"You forgot to add 'mini-css-extract-plugin' plugin (i.e. `{ plugins: [new MiniCssExtractPlugin()] }`), please read https://github.com/webpack-contrib/mini-css-extract-plugin#getting-started"
)
);
return;
}
// TODO simplify after drop webpack v4
// eslint-disable-next-line global-require
const webpack = this._compiler.webpack || require('webpack');
const handleExports = (originalExports, compilation, assets, assetsInfo) => {
let locals;
const esModule =
typeof options.esModule !== 'undefined' ? options.esModule : true;
const namedExport =
esModule && options.modules && options.modules.namedExport;
const addDependencies = (dependencies) => {
if (!Array.isArray(dependencies) && dependencies != null) {
throw new Error(
`Exported value was not extracted as an array: ${JSON.stringify(
dependencies
)}`
);
}
const identifierCountMap = new Map();
const emit = typeof options.emit !== 'undefined' ? options.emit : true;
let lastDep;
for (const dependency of dependencies) {
if (!dependency.identifier || !emit) {
// eslint-disable-next-line no-continue
continue;
}
const count = identifierCountMap.get(dependency.identifier) || 0;
const CssDependency = MiniCssExtractPlugin.getCssDependency(webpack);
this._module.addDependency(
(lastDep = new CssDependency(dependency, dependency.context, count))
);
identifierCountMap.set(dependency.identifier, count + 1);
}
if (lastDep && assets) {
lastDep.assets = assets;
lastDep.assetsInfo = assetsInfo;
}
};
try {
// eslint-disable-next-line no-underscore-dangle
exports = originalExports.__esModule
? originalExports.default
: originalExports;
if (namedExport) {
Object.keys(originalExports).forEach((key) => {
if (key !== 'default') {
if (!locals) {
locals = {};
}
locals[key] = originalExports[key];
}
});
} else {
locals = exports && exports.locals;
}
let dependencies;
if (!Array.isArray(exports)) {
dependencies = [[null, exports]];
} else {
dependencies = exports.map(([id, content, media, sourceMap]) => {
let identifier = id;
let context;
if (compilation) {
const module = findModuleById(compilation, id);
identifier = module.identifier();
({ context } = module);
} else {
// TODO check if this context is used somewhere
context = this.rootContext;
}
return {
identifier,
context,
content: Buffer.from(content),
media,
sourceMap: sourceMap
? Buffer.from(JSON.stringify(sourceMap))
: // eslint-disable-next-line no-undefined
undefined,
};
});
}
addDependencies(dependencies);
} catch (e) {
return callback(e);
}
const result = locals
? namedExport
? Object.keys(locals)
.map(
(key) => `\nexport var ${key} = ${JSON.stringify(locals[key])};`
)
.join('')
: `\n${
esModule ? 'export default' : 'module.exports ='
} ${JSON.stringify(locals)};`
: esModule
? `\nexport {};`
: '';
let resultSource = `// extracted by ${pluginName}`;
resultSource += this.hot
? hotLoader(result, { context: this.context, options, locals })
: result;
return callback(null, resultSource);
};
const publicPath =
typeof options.publicPath === 'string'
? options.publicPath === 'auto'
? ''
: options.publicPath === '' || options.publicPath.endsWith('/')
? options.publicPath
: `${options.publicPath}/`
: typeof options.publicPath === 'function'
? options.publicPath(this.resourcePath, this.rootContext)
: this._compilation.outputOptions.publicPath === 'auto'
? ''
: this._compilation.outputOptions.publicPath;
if (optionsFromPlugin.experimentalUseImportModule) {
if (!this.importModule) {
callback(
new Error(
"You are using experimentalUseImportModule but 'this.importModule' is not available in loader context. You need to have at least webpack 5.33.2."
)
);
return;
}
this.importModule(
`${this.resourcePath}.webpack[javascript/auto]!=!${request}`,
{
layer: options.layer,
publicPath,
},
(err, exports) => {
if (err) {
callback(err);
return;
}
handleExports(exports);
}
);
return;
}
const loaders = this.loaders.slice(this.loaderIndex + 1);
this.addDependency(this.resourcePath);
const childFilename = '*';
const outputOptions = {
filename: childFilename,
publicPath,
};
const childCompiler = this._compilation.createChildCompiler(
`${pluginName} ${request}`,
outputOptions
);
// The templates are compiled and executed by NodeJS - similar to server side rendering
// Unfortunately this causes issues as some loaders require an absolute URL to support ES Modules
// The following config enables relative URL support for the child compiler
childCompiler.options.module = { ...childCompiler.options.module };
childCompiler.options.module.parser = {
...childCompiler.options.module.parser,
};
childCompiler.options.module.parser.javascript = {
...childCompiler.options.module.parser.javascript,
url: 'relative',
};
const { NodeTemplatePlugin } = webpack.node;
const NodeTargetPlugin = webpack.node.NodeTargetPlugin
? webpack.node.NodeTargetPlugin
: // eslint-disable-next-line global-require
require('webpack/lib/node/NodeTargetPlugin');
new NodeTemplatePlugin(outputOptions).apply(childCompiler);
new NodeTargetPlugin().apply(childCompiler);
const { EntryOptionPlugin } = webpack;
if (EntryOptionPlugin) {
const {
library: { EnableLibraryPlugin },
} = webpack;
new EnableLibraryPlugin('commonjs2').apply(childCompiler);
EntryOptionPlugin.applyEntryOption(childCompiler, this.context, {
child: {
library: {
type: 'commonjs2',
},
import: [`!!${request}`],
},
});
} else {
const { LibraryTemplatePlugin, SingleEntryPlugin } = webpack;
new LibraryTemplatePlugin(null, 'commonjs2').apply(childCompiler);
new SingleEntryPlugin(this.context, `!!${request}`, pluginName).apply(
childCompiler
);
}
const { LimitChunkCountPlugin } = webpack.optimize;
new LimitChunkCountPlugin({ maxChunks: 1 }).apply(childCompiler);
const NormalModule = webpack.NormalModule
? webpack.NormalModule
: // eslint-disable-next-line global-require
require('webpack/lib/NormalModule');
childCompiler.hooks.thisCompilation.tap(
`${pluginName} loader`,
(compilation) => {
const normalModuleHook =
typeof NormalModule.getCompilationHooks !== 'undefined'
? NormalModule.getCompilationHooks(compilation).loader
: compilation.hooks.normalModuleLoader;
normalModuleHook.tap(`${pluginName} loader`, (loaderContext, module) => {
if (module.request === request) {
// eslint-disable-next-line no-param-reassign
module.loaders = loaders.map((loader) => {
return {
loader: loader.path,
options: loader.options,
ident: loader.ident,
};
});
}
});
}
);
let source;
const isWebpack4 = childCompiler.webpack
? false
: typeof childCompiler.resolvers !== 'undefined';
if (isWebpack4) {
childCompiler.hooks.afterCompile.tap(pluginName, (compilation) => {
source =
compilation.assets[childFilename] &&
compilation.assets[childFilename].source();
// Remove all chunk assets
compilation.chunks.forEach((chunk) => {
chunk.files.forEach((file) => {
delete compilation.assets[file]; // eslint-disable-line no-param-reassign
});
});
});
} else {
childCompiler.hooks.compilation.tap(pluginName, (compilation) => {
compilation.hooks.processAssets.tap(pluginName, () => {
source =
compilation.assets[childFilename] &&
compilation.assets[childFilename].source();
// console.log(source);
// Remove all chunk assets
compilation.chunks.forEach((chunk) => {
chunk.files.forEach((file) => {
compilation.deleteAsset(file);
});
});
});
});
}
childCompiler.runAsChild((error, entries, compilation) => {
const assets = Object.create(null);
const assetsInfo = new Map();
for (const asset of compilation.getAssets()) {
assets[asset.name] = asset.source;
assetsInfo.set(asset.name, asset.info);
}
if (error) {
return callback(error);
}
if (compilation.errors.length > 0) {
return callback(compilation.errors[0]);
}
compilation.fileDependencies.forEach((dep) => {
this.addDependency(dep);
}, this);
compilation.contextDependencies.forEach((dep) => {
this.addContextDependency(dep);
}, this);
if (!source) {
return callback(new Error("Didn't get a result from child compiler"));
}
let originalExports;
try {
originalExports = evalModuleCode(this, source, request);
} catch (e) {
return callback(e);
}
return handleExports(originalExports, compilation, assets, assetsInfo);
});
}
// eslint-disable-next-line func-names
export default function () {}