[chore]: Bump github.com/tdewolff/minify/v2 from 2.21.2 to 2.21.3 (#3727)

Bumps [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) from 2.21.2 to 2.21.3.
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](https://github.com/tdewolff/minify/compare/v2.21.2...v2.21.3)

---
updated-dependencies:
- dependency-name: github.com/tdewolff/minify/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2025-02-03 10:12:49 +00:00 committed by GitHub
commit 8b74cad422
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 1891 additions and 1625 deletions

View file

@ -1,8 +1,8 @@
release.sh
dist
benchmarks/*
!benchmarks/*.go
!benchmarks/sample_*
_benchmarks/*
!_benchmarks/*.go
!_benchmarks/sample_*
tests/*/fuzz-fuzz.zip
tests/*/crashers
tests/*/suppressions

View file

@ -1,4 +1,4 @@
Copyright (c) 2015 Taco de Wolff
Copyright (c) 2025 Taco de Wolff
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation

View file

@ -732,6 +732,6 @@ A typical example is HTML. Whitespace is significant in HTML, meaning that space
Another example is JavaScript. Single or double quoted string literals may not contain newline characters but instead need to escape them as `\n`. These are two bytes instead of a single newline byte. Using template literals it is allowed to have literal newline characters and we can use that fact to shave-off one byte! The result is that the minified output contains newlines instead of escaped newline characters, which makes the final file size smaller. Of course, changing from single or double quotes to template literals depends on other factors as well, and this minifier makes a calculation whether the template literal results in a shorter file size or not before converting a string literal.
## License
Released under the [MIT license](LICENSE.md).
Released under the [MIT license](LICENSE).
[1]: http://golang.org/ "Go Language"