We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05174ae commit d50fa68Copy full SHA for d50fa68
lib/webpack.js
@@ -14,6 +14,7 @@ const WebpackOptionsValidationError = require("./WebpackOptionsValidationError")
14
const webpackOptionsSchema = require("../schemas/WebpackOptions.json");
15
const RemovedPluginError = require("./RemovedPluginError");
16
const version = require("../package.json").version;
17
+
18
const webpack = (options, callback) => {
19
const webpackOptionsValidationErrors = validateSchema(
20
webpackOptionsSchema,
@@ -61,6 +62,7 @@ const webpack = (options, callback) => {
61
62
63
exports = module.exports = webpack;
64
exports.version = version;
65
66
webpack.WebpackOptionsDefaulter = WebpackOptionsDefaulter;
67
webpack.WebpackOptionsApply = WebpackOptionsApply;
68
webpack.Compiler = Compiler;
0 commit comments