html-bundler-webpack-plugin
Advanced tools
Comparing version 4.12.1 to 4.12.2
# Changelog | ||
## 4.12.2 (2025-01-13) | ||
- fix: allow to define the `renderStage` option lower than `PROCESS_ASSETS_STAGE_SUMMARIZE`, #137 | ||
## 4.12.1 (2025-01-12) | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "html-bundler-webpack-plugin", | ||
"version": "4.12.1", | ||
"version": "4.12.2", | ||
"description": "Generates complete single-page or multi-page website from source assets. Build-in support for Markdown, Eta, EJS, Handlebars, Nunjucks, Pug. Alternative to html-webpack-plugin.", | ||
@@ -160,2 +160,3 @@ "keywords": [ | ||
"@mui/material": "5.16.7", | ||
"@swc/html": "^1.10.7", | ||
"@test-fixtures/dius": "file:./test/fixtures/node_modules/dius/", | ||
@@ -178,2 +179,3 @@ "@test-fixtures/js": "0.0.2", | ||
"handlebars-layouts": "^3.1.4", | ||
"html-minimizer-webpack-plugin": "^5.0.0", | ||
"github-markdown-css": "^5.8.1", | ||
@@ -180,0 +182,0 @@ "jest": "^29.7.0", |
@@ -742,5 +742,8 @@ const path = require('path'); | ||
// minimal possible stage for the rendering | ||
if (renderStage < Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE) { | ||
renderStage = Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE; | ||
} | ||
// TODO: research a really minimal possible stage, | ||
// because, e.g., html-minimizer-webpack-plugin uses the PROCESS_ASSETS_STAGE_OPTIMIZE_SIZE stage, | ||
// and render must be called before this minimizer. | ||
// if (renderStage < Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE) { | ||
// renderStage = Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE; | ||
// } | ||
@@ -747,0 +750,0 @@ return renderStage; |
Sorry, the diff of this file is too big to display
749864
13197
7068
57