Sha256: 62a2f7d61e7937e87d3b2087104863107b733ea41216802845827a9610183377
Contents?: true
Size: 934 Bytes
Versions: 62
Compression:
Stored size: 934 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var Compiler = require("./Compiler"); var WebEnvironmentPlugin = require("./web/WebEnvironmentPlugin"); var WebpackOptionsApply = require("./WebpackOptionsApply"); var WebpackOptionsDefaulter = require("./WebpackOptionsDefaulter"); function webpack(options, callback) { new WebpackOptionsDefaulter().process(options); var compiler = new Compiler(); compiler.options = options; compiler.options = new WebpackOptionsApply().process(options, compiler); new WebEnvironmentPlugin(options.inputFileSystem, options.outputFileSystem).apply(compiler); if(callback) { compiler.run(callback); } return compiler; } module.exports = webpack; webpack.WebpackOptionsDefaulter = WebpackOptionsDefaulter; webpack.WebpackOptionsApply = WebpackOptionsApply; webpack.Compiler = Compiler; webpack.WebEnvironmentPlugin = WebEnvironmentPlugin;
Version data entries
62 entries across 62 versions & 1 rubygems