Skip to content

Commit

Permalink
Fix semicolon checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gseidel committed Apr 7, 2021
1 parent b2c3f6f commit fd299a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ module.exports = function (content) {
}

if (generatorOptions.html) {
var htmlDest = generatorOptions.htmlDest ? generatorOptions.htmlDest : generatorOptions.fontName + '.html'
var htmlDest = generatorOptions.htmlDest ? generatorOptions.htmlDest : generatorOptions.fontName + '.html';
htmlDest = generatorOptions.dest.concat(htmlDest);
htmlDest = loaderUtils.interpolateName(this,
htmlDest,
Expand All @@ -256,7 +256,7 @@ module.exports = function (content) {
relativeUrls[key] = path.relative(url.resolve(publicPath, path.dirname(htmlDest.replace(/\\/g, '/'))), urls[key]);
}

var htmlContent = res.generateHtml(relativeUrls)
var htmlContent = res.generateHtml(relativeUrls);
this.emitFile(htmlDest, htmlContent);
}

Expand Down

0 comments on commit fd299a5

Please sign in to comment.