Sha256: 43b1ba210437284abc4a53bce8fc0aebba4361a88c3be79ab060a9b11303ab02

Contents?: true

Size: 942 Bytes

Versions: 27

Compression:

Stored size: 942 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const Compiler = require("./Compiler");
const WebEnvironmentPlugin = require("./web/WebEnvironmentPlugin");
const WebpackOptionsApply = require("./WebpackOptionsApply");
const WebpackOptionsDefaulter = require("./WebpackOptionsDefaulter");

const webpack = (options, callback) => {
	new WebpackOptionsDefaulter().process(options);

	const compiler = new Compiler();
	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

27 entries across 26 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/webpack.web.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/webpack.web.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/webpack.web.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/webpack.web.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/webpack.web.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/webpack.web.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/webpack.web.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/webpack.web.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/webpack.web.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/webpack.web.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/webpack.web.js
jester-data-8.0.0 node_modules/webpack/lib/webpack.web.js