mirror of https://github.com/webpack/webpack.git
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
|
/** @type {import("../../../../").LoaderDefinition<{ message: string }>} */
|
||
|
module.exports = function() {
|
||
|
const callback = this.async();
|
||
|
const options = this.getOptions();
|
||
|
|
||
|
callback(new Error(options.message || 'Message'));
|
||
|
};
|