[chore]: Bump github.com/tdewolff/minify/v2 from 2.20.33 to 2.20.34 (#3017)

This commit is contained in:
dependabot[bot]
2024-06-17 08:11:08 +00:00
committed by GitHub
parent 76d695d847
commit b7dede2a47
10 changed files with 12 additions and 1895 deletions

View File

@ -196,6 +196,10 @@ func NewIndenter(w io.Writer, n int) Indenter {
}
}
func (in Indenter) Indent() int {
return len(in.b)
}
func (in Indenter) Write(b []byte) (int, error) {
n, j := 0, 0
for i, c := range b {