Skip to content

Commit c3284f6

Browse files
committed
style: fix lint issues
1 parent 9373a22 commit c3284f6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/@vue/cli-plugin-pwa/lib/HtmlPwaPlugin.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ module.exports = class HtmlPwaPlugin {
185185
if (!isHrefAbsoluteUrl(this.options.manifestPath)) {
186186
compiler.hooks.compilation.tap(ID, compilation => {
187187
compilation.hooks.processAssets.tap(
188-
{name: ID, stage: 'PROCESS_ASSETS_STAGE_ADDITIONS'},
188+
{ name: ID, stage: 'PROCESS_ASSETS_STAGE_ADDITIONS' },
189189
assets => {
190190
const {
191191
name,
@@ -203,11 +203,11 @@ module.exports = class HtmlPwaPlugin {
203203
)
204204
assets[manifestPath] = {
205205
source: () => outputManifest,
206-
size: () => outputManifest.length,
207-
};
208-
},
209-
);
210-
});
206+
size: () => outputManifest.length
207+
}
208+
}
209+
)
210+
})
211211
}
212212
}
213213
}

0 commit comments

Comments
 (0)