UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

114 lines (108 loc) 3.42 kB
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var Compiler = require("./Compiler"); var MultiCompiler = require("./MultiCompiler"); var NodeEnvironmentPlugin = require("./node/NodeEnvironmentPlugin"); var WebpackOptionsApply = require("./WebpackOptionsApply"); var WebpackOptionsDefaulter = require("./WebpackOptionsDefaulter"); function webpack(options, callback) { var compiler; if(Array.isArray(options)) { compiler = new MultiCompiler(options.map(function(options) { return webpack(options); })); } else if(typeof options === "object") { new WebpackOptionsDefaulter().process(options); compiler = new Compiler(); compiler.options = options; compiler.options = new WebpackOptionsApply().process(options, compiler); new NodeEnvironmentPlugin().apply(compiler); compiler.applyPlugins("environment"); compiler.applyPlugins("after-environment"); } else { throw new Error("Invalid argument: options"); } if(callback) { if(typeof callback !== "function") throw new Error("Invalid argument: callback"); if(options.watch === true || (Array.isArray(options) && options.some(function(o) { return o.watch; }))) { var watchOptions = (!Array.isArray(options) ? options : options[0]).watchOptions || {}; // TODO remove this in next major version var watchDelay = (!Array.isArray(options) ? options : options[0]).watchDelay; if(watchDelay) { console.warn("options.watchDelay is deprecated: Use 'options.watchOptions.aggregateTimeout' instead"); watchOptions.aggregateTimeout = watchDelay; } return compiler.watch(watchOptions, callback); } compiler.run(callback); } return compiler; } exports = module.exports = webpack; webpack.WebpackOptionsDefaulter = WebpackOptionsDefaulter; webpack.WebpackOptionsApply = WebpackOptionsApply; webpack.Compiler = Compiler; webpack.MultiCompiler = MultiCompiler; webpack.NodeEnvironmentPlugin = NodeEnvironmentPlugin; function exportPlugins(exports, path, plugins) { plugins.forEach(function(name) { Object.defineProperty(exports, name, { configurable: false, enumerable: true, get: function() { return require(path + "/" + name); } }); }); } exportPlugins(exports, ".", [ "DefinePlugin", "NormalModuleReplacementPlugin", "ContextReplacementPlugin", "IgnorePlugin", "WatchIgnorePlugin", "BannerPlugin", "PrefetchPlugin", "AutomaticPrefetchPlugin", "ProvidePlugin", "HotModuleReplacementPlugin", "ResolverPlugin", "SourceMapDevToolPlugin", "EvalSourceMapDevToolPlugin", "EvalDevToolModulePlugin", "CachePlugin", "ExtendedAPIPlugin", "ExternalsPlugin", "JsonpTemplatePlugin", "LibraryTemplatePlugin", "LoaderTargetPlugin", "MemoryOutputFileSystem", "ProgressPlugin", "SetVarMainTemplatePlugin", "UmdMainTemplatePlugin", "NoErrorsPlugin", "NewWatchingPlugin", "OldWatchingPlugin", "EnvironmentPlugin", "DllPlugin", "DllReferencePlugin", "NamedModulesPlugin" ]); exportPlugins(exports.optimize = {}, "./optimize", [ "AggressiveMergingPlugin", "CommonsChunkPlugin", "DedupePlugin", "LimitChunkCountPlugin", "MinChunkSizePlugin", "OccurenceOrderPlugin", "OccurrenceOrderPlugin", "UglifyJsPlugin" ]); exportPlugins(exports.dependencies = {}, "./dependencies", [ "LabeledModulesPlugin" ]);