Skip to content

Commit 3e5e39b

Browse files
committed
Fix semistandard syntax issue
1 parent b9d7c14 commit 3e5e39b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ HtmlWebpackExcludeAssetsPlugin.prototype.apply = function (compiler) {
1717
if (callback) {
1818
return callback(null, htmlPluginData);
1919
} else {
20-
return Promise.resolve(htmlPluginData)
20+
return Promise.resolve(htmlPluginData);
2121
}
2222
}
2323

@@ -34,7 +34,7 @@ HtmlWebpackExcludeAssetsPlugin.prototype.apply = function (compiler) {
3434
if (callback) {
3535
callback(null, result);
3636
} else {
37-
return Promise.resolve(result)
37+
return Promise.resolve(result);
3838
}
3939
});
4040
});

0 commit comments

Comments
 (0)