Skip to content

Commit

Permalink
style: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Feb 5, 2024
1 parent 0542f96 commit 01880ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -12,7 +12,7 @@ const { CachedChildCompilation } = require('./lib/cached-child-compiler');
const { createHtmlTagObject, htmlTagObjectToString, HtmlTagArray } = require('./lib/html-tags');
const prettyError = require('./lib/errors.js');
const chunkSorter = require('./lib/chunksorter.js');
const {AsyncSeriesWaterfallHook} = require("tapable");
const { AsyncSeriesWaterfallHook } = require('tapable');

/** @typedef {import("./typings").HtmlTagObject} HtmlTagObject */
/** @typedef {import("./typings").Options} HtmlWebpackOptions */
Expand Down Expand Up @@ -91,7 +91,7 @@ class HtmlWebpackPlugin {
* @param {Compilation} compilation
* @returns {HtmlWebpackPluginHooks}
*/
static getCompilationHooks(compilation) {
static getCompilationHooks (compilation) {
let hooks = compilationHooksMap.get(compilation);

if (!hooks) {
Expand Down

0 comments on commit 01880ae

Please sign in to comment.