mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			109 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| const webpackOptionsSchema = require("../schemas/WebpackOptions.json");
 | |
| const Compiler = require("./Compiler");
 | |
| const MultiCompiler = require("./MultiCompiler");
 | |
| const WebpackOptionsApply = require("./WebpackOptionsApply");
 | |
| const WebpackOptionsDefaulter = require("./WebpackOptionsDefaulter");
 | |
| const WebpackOptionsValidationError = require("./WebpackOptionsValidationError");
 | |
| const NodeEnvironmentPlugin = require("./node/NodeEnvironmentPlugin");
 | |
| const validateSchema = require("./validateSchema");
 | |
| 
 | |
| /** @typedef {import("../declarations/WebpackOptions").WebpackOptions} WebpackOptions */
 | |
| /** @typedef {import("./MultiStats")} MultiStats */
 | |
| /** @typedef {import("./Stats")} Stats */
 | |
| 
 | |
| /**
 | |
|  * @template T
 | |
|  * @callback Callback
 | |
|  * @param {Error=} err
 | |
|  * @param {T=} stats
 | |
|  * @returns {void}
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * @param {WebpackOptions[]} childOptions options array
 | |
|  * @returns {MultiCompiler} a multi-compiler
 | |
|  */
 | |
| const createMultiCompiler = childOptions => {
 | |
| 	const compilers = childOptions.map(options => createCompiler(options));
 | |
| 	const compiler = new MultiCompiler(compilers);
 | |
| 	for (const childCompiler of compilers) {
 | |
| 		if (childCompiler.options.dependencies) {
 | |
| 			compiler.setDependencies(
 | |
| 				childCompiler,
 | |
| 				childCompiler.options.dependencies
 | |
| 			);
 | |
| 		}
 | |
| 	}
 | |
| 	return compiler;
 | |
| };
 | |
| 
 | |
| /**
 | |
|  * @param {WebpackOptions} options options object
 | |
|  * @returns {Compiler} a compiler
 | |
|  */
 | |
| const createCompiler = options => {
 | |
| 	options = new WebpackOptionsDefaulter().process(options);
 | |
| 	const compiler = new Compiler(options.context);
 | |
| 	compiler.options = options;
 | |
| 	new NodeEnvironmentPlugin().apply(compiler);
 | |
| 	if (Array.isArray(options.plugins)) {
 | |
| 		for (const plugin of options.plugins) {
 | |
| 			if (typeof plugin === "function") {
 | |
| 				plugin.call(compiler, compiler);
 | |
| 			} else {
 | |
| 				plugin.apply(compiler);
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	compiler.hooks.environment.call();
 | |
| 	compiler.hooks.afterEnvironment.call();
 | |
| 	compiler.options = new WebpackOptionsApply().process(options, compiler);
 | |
| 	return compiler;
 | |
| };
 | |
| 
 | |
| /**
 | |
|  * @param {WebpackOptions | WebpackOptions[]} options options object
 | |
|  * @param {Callback<Stats | MultiStats>=} callback callback
 | |
|  * @returns {Compiler | MultiCompiler} the compiler object
 | |
|  */
 | |
| const webpack = (options, callback) => {
 | |
| 	const validationErrors = validateSchema(webpackOptionsSchema, options);
 | |
| 	if (validationErrors.length) {
 | |
| 		throw new WebpackOptionsValidationError(validationErrors);
 | |
| 	}
 | |
| 	/** @type {TODO} */
 | |
| 	let compiler;
 | |
| 	let watch = false;
 | |
| 	let watchOptions;
 | |
| 	if (Array.isArray(options)) {
 | |
| 		compiler = createMultiCompiler(options);
 | |
| 		watch = options.some(options => options.watch);
 | |
| 		watchOptions = options.map(options => options.watchOptions || {});
 | |
| 	} else {
 | |
| 		compiler = createCompiler(options);
 | |
| 		watch = options.watch;
 | |
| 		watchOptions = options.watchOptions || {};
 | |
| 	}
 | |
| 	if (callback) {
 | |
| 		if (watch) {
 | |
| 			compiler.watch(watchOptions, callback);
 | |
| 		} else {
 | |
| 			compiler.run((err, stats) => {
 | |
| 				compiler.close(err2 => {
 | |
| 					callback(err || err2, stats);
 | |
| 				});
 | |
| 			});
 | |
| 		}
 | |
| 	}
 | |
| 	return compiler;
 | |
| };
 | |
| 
 | |
| module.exports = webpack;
 |