webpack/test/configCases/errors/generator-generate-error/loader.js

8 lines
230 B
JavaScript
Raw Normal View History

/** @type {import("../../../../").LoaderDefinition<{ message: string }>} */
module.exports = function() {
const callback = this.async();
const options = this.getOptions();
callback(new Error(options.message || 'Message'));
};