Skip to content

Commit

Permalink
Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Jun 19, 2019
1 parent 3321f31 commit 0109d68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/webpack.js
Expand Up @@ -32,7 +32,9 @@ const webpack = (options, callback) => {
}
let compiler;
if (Array.isArray(options)) {
compiler = new MultiCompiler(Array.from(options).map(options => webpack(options)));
compiler = new MultiCompiler(
Array.from(options).map(options => webpack(options))
);
} else if (typeof options === "object") {
options = new WebpackOptionsDefaulter().process(options);

Expand Down

0 comments on commit 0109d68

Please sign in to comment.