Update dependencies to newer versions

Updated several key dependencies in package.json and package-lock.json to their newer versions. Also replaced 'html-minifier' with 'html-minifier-terser'. The updates include minor and patch upgrades.
This commit is contained in:
Emil Gulamov 2024-05-06 23:06:52 +04:00
parent 258154e2e3
commit 30a71a2e9c

View file

@ -12,7 +12,7 @@ await Promise.all(
let html = await fs.readFile(file, 'utf-8') let html = await fs.readFile(file, 'utf-8')
// Minify the HTML // Minify the HTML
html = minify(html, { html = await minify(html, {
removeComments: true, removeComments: true,
preserveLineBreaks: true, preserveLineBreaks: true,
collapseWhitespace: true, collapseWhitespace: true,