mirror of https://github.com/webpack/webpack.git
fix --display-provided-exports
This commit is contained in:
parent
c08d1b4f89
commit
f47e920d22
|
@ -126,6 +126,7 @@ if(argv.verbose) {
|
|||
argv["display-reasons"] = true;
|
||||
argv["display-entrypoints"] = true;
|
||||
argv["display-used-exports"] = true;
|
||||
argv["display-provided-exports"] = true;
|
||||
argv["display-error-details"] = true;
|
||||
argv["display-modules"] = true;
|
||||
argv["display-cached"] = true;
|
||||
|
@ -212,6 +213,10 @@ function processOptions(options) {
|
|||
outputOptions.usedExports = bool;
|
||||
});
|
||||
|
||||
ifArg("display-provided-exports", function(bool) {
|
||||
outputOptions.providedExports = bool;
|
||||
});
|
||||
|
||||
ifArg("display-error-details", function(bool) {
|
||||
outputOptions.errorDetails = bool;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue