From 360761331cf8af00e1686972f63932a887892b16 Mon Sep 17 00:00:00 2001 From: Rim Date: Mon, 31 Mar 2025 23:00:18 -0400 Subject: [PATCH] chore(build.js): remove unused code --- src/js/build.js | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/src/js/build.js b/src/js/build.js index f600808..e5bd63d 100644 --- a/src/js/build.js +++ b/src/js/build.js @@ -298,43 +298,6 @@ function minifyJSON() { } } -// Minify HTML files and update references -/* -function minifyHTML() { - console.log('Minifying HTML files...'); - const files = glob.sync(config.html.src); - - for (const file of files) { - let content = fs.readFileSync(file, 'utf8'); - - // Update JS references to minified versions, preserving directory structure - content = content.replace(/src=["'](.+?)\.js["']/g, (match, p1) => { - return `src="${p1}.min.js"`; - }); - - // Update CSS references to minified versions, preserving directory structure - content = content.replace(/href=["'](.+?)\.css["']/g, (match, p1) => { - return `href="${p1}.min.css"`; - }); - - // Minify HTML - const minified = htmlmin.minify(content, { - collapseWhitespace: true, - removeComments: true, - minifyJS: true, - minifyCSS: true, - removeRedundantAttributes: true, - removeEmptyAttributes: true, - removeOptionalTags: true - }); - - const outputPath = createOutputPath(file, '.'); - ensureDirectoryExistence(outputPath); - fs.writeFileSync(outputPath, minified); - console.log(`✓ Minified: ${file} -> ${outputPath}`); - } -} */ - // Minify HTML files function minifyHTML() { console.log('Minifying HTML files...');