Skip to content

Commit

Permalink
Fix semistandard syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjieye committed Feb 27, 2018
1 parent b9d7c14 commit 3e5e39b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ HtmlWebpackExcludeAssetsPlugin.prototype.apply = function (compiler) {
if (callback) {
return callback(null, htmlPluginData);
} else {
return Promise.resolve(htmlPluginData)
return Promise.resolve(htmlPluginData);
}
}

Expand All @@ -34,7 +34,7 @@ HtmlWebpackExcludeAssetsPlugin.prototype.apply = function (compiler) {
if (callback) {
callback(null, result);
} else {
return Promise.resolve(result)
return Promise.resolve(result);
}
});
});
Expand Down

0 comments on commit 3e5e39b

Please sign in to comment.