You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When webpack config's output.filename is '[name].js' there are no warnings.
Actual Behavior / Situation
When any output.filename is set, karma-webpack will warn even when result is the same setting as in:
karma-webpack does not currently support customized filenames via
webpack output.filename, if this is something you need consider opening an issue.
defaulting [name].js to [name].js.
Modification Proposal
Also check that value is not already '[name].js'. Okay to delete as replace; just don't warn.
The text was updated successfully, but these errors were encountered:
This prevents a warning that occurs when output.filename
is set to '[name].js'. Because this is the default, there
is no need to warn the user as no change will happen.
Fixes#550
This prevents a warning that occurs when output.filename
is set to '[name].js'. Because this is the default, there
is no need to warn the user as no change will happen.
Fixes#550
Expected Behavior / Situation
When webpack config's output.filename is '[name].js' there are no warnings.
Actual Behavior / Situation
When any output.filename is set, karma-webpack will warn even when result is the same setting as in:
Modification Proposal
Also check that value is not already '[name].js'. Okay to delete as replace; just don't warn.
The text was updated successfully, but these errors were encountered: