File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments