Skip to content

Commit 87e3c08

Browse files
committed
chore: format code
1 parent c6aaf3f commit 87e3c08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/v3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class PluginForHtmlWebpackPluginV3 extends BasePlugin {
1818
// check if current html needs to be inlined
1919
if (this.isCurrentFileNeedsToBeInlined(data.outputName)) {
2020
const [...cssAssets] = data.assets.css
21-
cssAssets.forEach(cssLink => {
21+
cssAssets.forEach((cssLink) => {
2222
const style = this.getCSSStyle({
2323
cssLink,
2424
publicPath: data.assets.publicPath,

src/core/v4.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class PluginForHtmlWebpackPluginV4 extends BasePlugin {
3333

3434
private prepareCSSStyle(data: BeforeAssetTagGenerationData) {
3535
const [...cssAssets] = data.assets.css
36-
cssAssets.forEach(cssLink => {
36+
cssAssets.forEach((cssLink) => {
3737
if (this.isCurrentFileNeedsToBeInlined(cssLink)) {
3838
const style = this.getCSSStyle({
3939
cssLink,

0 commit comments

Comments
 (0)