Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
webdiscus committed Nov 1, 2024
1 parent ebd2951 commit d32655c
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

## 4.1.4 (2024-11-01)

- chore: update dependencies

## 4.1.3 (2024-10-28)

- fix: if `filesystem` cache is used, webpack stats or errors are not displayed, #115
Expand Down
21 changes: 10 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html-bundler-webpack-plugin",
"version": "4.1.3",
"version": "4.1.4",
"description": "HTML Bundler Plugin for Webpack renders HTML templates containing source files of scripts, styles, images. Supports template engines: Eta, EJS, Handlebars, Nunjucks, Pug, TwigJS. Alternative to html-webpack-plugin.",
"keywords": [
"html",
Expand Down Expand Up @@ -143,7 +143,7 @@
},
"dependencies": {
"@types/html-minifier-terser": "^7.0.2",
"ansis": "2.0.3",
"ansis": "3.3.2",
"enhanced-resolve": ">=5.7.0",
"eta": "^3.4.1",
"html-minifier-terser": "^7.2.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/favicons-bundler-plugin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class FaviconsBundlerPlugin {
}

warningFaviconNotFound() {
const header = `\n${black.bgYellow` ${this.pluginName} `}${black.bgAnsi(227)` WARNING `} `;
const header = `\n${black.bgYellow` ${this.pluginName} `}${black.bg(227)` WARNING `} `;

let warning = `Favicon file is not found!
If the ${blueBright(
Expand Down
2 changes: 1 addition & 1 deletion src/Loader/Messages/Warnings.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Config = require('../../Common/Config');

const { pluginLabel } = Config.get();
const headerWarning = `\n${reset.black.bgYellow` ${pluginLabel} `}\n`;
const headerDeprecation = `\n${reset.black.bgYellow` ${pluginLabel} `}${black.bgAnsi(227)` DEPRECATION `} `;
const headerDeprecation = `\n${reset.black.bgYellow` ${pluginLabel} `}${black.bg(227)` DEPRECATION `} `;

/**
* @param {Array<string>} dirs Not founded directories.
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Messages/Deprecation.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Config = require('../../Common/Config');

const { pluginLabel } = Config.get();

const header = `\n${black.bgYellow` ${pluginLabel} `}${black.bgAnsi(227)` DEPRECATE `} `;
const header = `\n${black.bgYellow` ${pluginLabel} `}${black.bg(227)` DEPRECATE `} `;

// Example for deprecations

Expand Down
2 changes: 1 addition & 1 deletion test/cases/_pug/require-script-tags/expected/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html><head><script src="js/file1.034defc3.js"></script><script src="js/file2.e5c7f644.js"></script><script src="js/file3.f1b372d2.js"></script><script src="js/file4.daa27ac4.js"></script><script src="js/file5.c863871f.js"></script><script src="js/index.e0a44bc9.js"></script></head><body><h1>Hello World!</h1></body></html>
<!DOCTYPE html><html><head><script src="js/file1.034defc3.js"></script><script src="js/file2.e5c7f644.js"></script><script src="js/file3.f1b372d2.js"></script><script src="js/file4.daa27ac4.js"></script><script src="js/file5.c863871f.js"></script><script src="js/index.41ffc8b6.js"></script></head><body><h1>Hello World!</h1></body></html>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

0 comments on commit d32655c

Please sign in to comment.