mirror of https://github.com/webpack/webpack.git
Remove extraneous argument from setOptions call sites in OptionsDefaulter
This commit is contained in:
parent
fc2feaf6d7
commit
165a2edf16
|
|
@ -43,8 +43,7 @@ class OptionsDefaulter {
|
|||
setProperty(
|
||||
options,
|
||||
name,
|
||||
this.defaults[name].call(this, getProperty(options, name), options),
|
||||
options
|
||||
this.defaults[name].call(this, getProperty(options, name), options)
|
||||
);
|
||||
break;
|
||||
case "make":
|
||||
|
|
@ -52,8 +51,7 @@ class OptionsDefaulter {
|
|||
setProperty(
|
||||
options,
|
||||
name,
|
||||
this.defaults[name].call(this, options),
|
||||
options
|
||||
this.defaults[name].call(this, options)
|
||||
);
|
||||
break;
|
||||
case "append": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue