Skip to content

Commit 6f85bdd

Browse files
committed
fix: fix lint
1 parent 59377a0 commit 6f85bdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/viewer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ async function generateReport(bundleStats, opts) {
153153
});
154154
const reportFilepath = path.resolve(bundleDir || process.cwd(), reportFilename);
155155

156-
writeToFs(fs, reportFilepath, reportHtml)
156+
writeToFs(fs, reportFilepath, reportHtml);
157157

158158
logger.info(`${bold('Webpack Bundle Analyzer')} saved report to ${bold(reportFilepath)}`);
159159

@@ -169,7 +169,7 @@ async function generateJSONReport(bundleStats, opts) {
169169

170170
if (!chartData) return;
171171

172-
writeToFs(fs, reportFilename, JSON.stringify(chartData))
172+
writeToFs(fs, reportFilename, JSON.stringify(chartData));
173173

174174
logger.info(`${bold('Webpack Bundle Analyzer')} saved JSON report to ${bold(reportFilename)}`);
175175
}

0 commit comments

Comments
 (0)