Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/webpack-cli/bin/ |
Upload File : |
module.exports = function processOptions(yargs, argv) { // process Promise function ifArg(name, fn, init) { if (Array.isArray(argv[name])) { if (init) init(); argv[name].forEach(fn); } else if (typeof argv[name] !== "undefined") { if (init) init(); fn(argv[name], -1); } } const options = require("./convert-argv")(argv); if (typeof options.then === "function") { options.then(processOptions).catch(function(err) { console.error(err.stack || err); process.exitCode = 1; }); return; } const firstOptions = Array.isArray(options) ? options[0] || {} : options; if (typeof options.stats === "boolean" || typeof options.stats === "string") { const statsPresetToOptions = require("webpack").Stats.presetToOptions; options.stats = statsPresetToOptions(options.stats); } const outputOptions = Object.create( options.stats || firstOptions.stats || {} ); if (typeof outputOptions.context === "undefined") outputOptions.context = firstOptions.context; ifArg("json", function(bool) { if (bool) outputOptions.json = bool; }); if (typeof outputOptions.colors === "undefined") outputOptions.colors = require("supports-color"); ifArg("sort-modules-by", function(value) { outputOptions.modulesSort = value; }); ifArg("sort-chunks-by", function(value) { outputOptions.chunksSort = value; }); ifArg("sort-assets-by", function(value) { outputOptions.assetsSort = value; }); ifArg("display-exclude", function(value) { outputOptions.exclude = value; }); if (!outputOptions.json) { if (typeof outputOptions.cached === "undefined") outputOptions.cached = false; if (typeof outputOptions.cachedAssets === "undefined") outputOptions.cachedAssets = false; ifArg("display-chunks", function(bool) { outputOptions.modules = !bool; outputOptions.chunks = bool; }); ifArg("display-entrypoints", function(bool) { outputOptions.entrypoints = bool; }); ifArg("display-reasons", function(bool) { outputOptions.reasons = bool; }); ifArg("display-used-exports", function(bool) { outputOptions.usedExports = bool; }); ifArg("display-provided-exports", function(bool) { outputOptions.providedExports = bool; }); ifArg("display-error-details", function(bool) { outputOptions.errorDetails = bool; }); ifArg("display-origins", function(bool) { outputOptions.chunkOrigins = bool; }); ifArg("display-cached", function(bool) { if (bool) outputOptions.cached = true; }); ifArg("display-cached-assets", function(bool) { if (bool) outputOptions.cachedAssets = true; }); if (!outputOptions.exclude && !argv["display-modules"]) outputOptions.exclude = [ "node_modules", "bower_components", "jam", "components" ]; } else { if (typeof outputOptions.chunks === "undefined") outputOptions.chunks = true; if (typeof outputOptions.entrypoints === "undefined") outputOptions.entrypoints = true; if (typeof outputOptions.modules === "undefined") outputOptions.modules = true; if (typeof outputOptions.chunkModules === "undefined") outputOptions.chunkModules = true; if (typeof outputOptions.reasons === "undefined") outputOptions.reasons = true; if (typeof outputOptions.cached === "undefined") outputOptions.cached = true; if (typeof outputOptions.cachedAssets === "undefined") outputOptions.cachedAssets = true; } ifArg("hide-modules", function(bool) { if (bool) { outputOptions.modules = false; outputOptions.chunkModules = false; } }); const webpack = require("webpack"); Error.stackTraceLimit = 30; let lastHash = null; let compiler; try { compiler = webpack(options); } catch (e) { const WebpackOptionsValidationError = require("webpack") .WebpackOptionsValidationError; if (e instanceof WebpackOptionsValidationError) { if (argv.color) console.error( "\u001b[1m\u001b[31m" + e.message + "\u001b[39m\u001b[22m" ); else console.error(e.message); process.exitCode = 1; } throw e; } if (argv.progress) { const ProgressPlugin = require("webpack").ProgressPlugin; new ProgressPlugin({ profile: argv.profile }).apply(compiler); } function compilerCallback(err, stats) { if (!options.watch || err) { // Do not keep cache anymore compiler.purgeInputFileSystem(); } if (err) { lastHash = null; console.error(err.stack || err); if (err.details) console.error(err.details); process.exitCode = 1; } if (outputOptions.json) { process.stdout.write( JSON.stringify(stats.toJson(outputOptions), null, 2) + "\n" ); } else if (stats.hash !== lastHash) { lastHash = stats.hash; process.stdout.write("\n" + new Date() + "\n" + "\n"); process.stdout.write(stats.toString(outputOptions) + "\n"); if (argv.s) lastHash = null; } if (!options.watch && stats.hasErrors()) { process.on("exit", function(_) { process.exitCode = 2; }); } } if (options.watch) { const primaryOptions = !Array.isArray(options) ? options : options[0]; const watchOptions = primaryOptions.watchOptions || primaryOptions.watch || {}; if (watchOptions.stdin) { process.stdin.on("end", function(_) { process.exitCode = 0; }); process.stdin.resume(); } compiler.watch(watchOptions, compilerCallback); console.log("\nWebpack is watching the files…\n"); } else compiler.run(compilerCallback); };