diff --git a/vendor/github.com/tdewolff/minify/v2/.gitattributes b/vendor/github.com/tdewolff/minify/v2/.gitattributes
new file mode 100644
index 000000000..16a3a8b06
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/.gitattributes
@@ -0,0 +1,2 @@
+benchmarks/sample_* linguist-generated
+tests/*/corpus/* linguist-generated
diff --git a/vendor/github.com/tdewolff/minify/v2/.gitignore b/vendor/github.com/tdewolff/minify/v2/.gitignore
new file mode 100644
index 000000000..8653de91d
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/.gitignore
@@ -0,0 +1,14 @@
+dist/
+benchmarks/*
+!benchmarks/*.go
+!benchmarks/sample_*
+tests/*/fuzz-fuzz.zip
+tests/*/crashers
+tests/*/suppressions
+tests/*/corpus/*
+!tests/*/corpus/*.*
+parse/tests/*/fuzz-fuzz.zip
+parse/tests/*/crashers
+parse/tests/*/suppressions
+parse/tests/*/corpus/*
+!parse/tests/*/corpus/*.*
diff --git a/vendor/github.com/tdewolff/minify/v2/.golangci.yml b/vendor/github.com/tdewolff/minify/v2/.golangci.yml
new file mode 100644
index 000000000..7009f9201
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/.golangci.yml
@@ -0,0 +1,16 @@
+linters:
+ enable:
+ - depguard
+ - dogsled
+ - gofmt
+ - goimports
+ - golint
+ - gosec
+ - govet
+ - megacheck
+ - misspell
+ - nakedret
+ - prealloc
+ - unconvert
+ - unparam
+ - wastedassign
diff --git a/vendor/github.com/tdewolff/minify/v2/Dockerfile b/vendor/github.com/tdewolff/minify/v2/Dockerfile
new file mode 100644
index 000000000..6cc2de9cc
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/Dockerfile
@@ -0,0 +1,14 @@
+# Use this image to build the executable
+FROM golang:1.16-alpine AS compiler
+
+WORKDIR $GOPATH/src/minify
+COPY . .
+
+RUN apk add --update --update-cache --no-cache git ca-certificates && \
+ GO111MODULES=on CGO_ENABLED=0 go build -ldflags "-s -w" -trimpath -o /bin/minify ./cmd/minify
+
+
+# Final image containing the executable from the previous step
+FROM alpine:3
+
+COPY --from=compiler /bin/minify /bin/minify
diff --git a/vendor/github.com/tdewolff/minify/v2/LICENSE b/vendor/github.com/tdewolff/minify/v2/LICENSE
new file mode 100644
index 000000000..41677de41
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/LICENSE
@@ -0,0 +1,22 @@
+Copyright (c) 2015 Taco de Wolff
+
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/vendor/github.com/tdewolff/minify/v2/Makefile b/vendor/github.com/tdewolff/minify/v2/Makefile
new file mode 100644
index 000000000..22e448a3c
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/Makefile
@@ -0,0 +1,56 @@
+NAME=minify
+CMD=./cmd/minify
+TARGETS=linux_amd64 darwin_amd64 freebsd_amd64 netbsd_amd64 openbsd_amd64 windows_amd64
+VERSION=`git describe --tags`
+FLAGS=-ldflags "-s -w -X 'main.Version=${VERSION}'" -trimpath
+ENVS=GO111MODULES=on CGO_ENABLED=0
+
+all: install
+
+install:
+ echo "Installing ${VERSION}"
+ ${ENVS} go install ${FLAGS} ./cmd/minify
+ . cmd/minify/bash_completion
+
+release:
+ TAG=$(shell git describe --tags --exact-match 2> /dev/null);
+ if [ "${.SHELLSTATUS}" -eq 0 ]; then \
+ echo "Releasing ${VERSION}"; \
+ else \
+ echo "WARNING: commit is not tagged with a version"; \
+ echo ""; \
+ fi
+ rm -rf dist
+ mkdir -p dist
+ for t in ${TARGETS}; do \
+ echo Building $$t...; \
+ mkdir dist/$$t; \
+ os=$$(echo $$t | cut -f1 -d_); \
+ arch=$$(echo $$t | cut -f2 -d_); \
+ ${ENVS} GOOS=$$os GOARCH=$$arch go build ${FLAGS} -o dist/$$t/${NAME} ${CMD}; \
+ \
+ cp LICENSE dist/$$t/.; \
+ cp cmd/minify/README.md dist/$$t/.; \
+ if [ "$$os" == "windows" ]; then \
+ mv dist/$$t/${NAME} dist/$$t/${NAME}.exe; \
+ zip -jq dist/${NAME}_$$t.zip dist/$$t/*; \
+ cd dist; \
+ sha256sum ${NAME}_$$t.zip >> checksums.txt; \
+ cd ..; \
+ else \
+ cp cmd/minify/bash_completion dist/$$t/.; \
+ cd dist/$$t; \
+ tar -cf - * | gzip -9 > ../${NAME}_$$t.tar.gz; \
+ cd ..; \
+ sha256sum ${NAME}_$$t.tar.gz >> checksums.txt; \
+ cd ..; \
+ fi; \
+ rm -rf dist/$$t; \
+ done
+
+clean:
+ echo "Cleaning dist/"
+ rm -rf dist
+
+.PHONY: install release clean
+.SILENT: install release clean
diff --git a/vendor/github.com/tdewolff/minify/v2/README.md b/vendor/github.com/tdewolff/minify/v2/README.md
new file mode 100644
index 000000000..0dfcb06c2
--- /dev/null
+++ b/vendor/github.com/tdewolff/minify/v2/README.md
@@ -0,0 +1,693 @@
+# Minify [](https://pkg.go.dev/github.com/tdewolff/minify/v2?tab=doc) [](https://goreportcard.com/report/github.com/tdewolff/minify) [](https://codecov.io/gh/tdewolff/minify) [](https://www.patreon.com/tdewolff)
+
+**[Online demo](https://go.tacodewolff.nl/minify) if you need to minify files *now*.**
+
+**[Command line tool](https://github.com/tdewolff/minify/tree/master/cmd/minify) that minifies concurrently and watches file changes.**
+
+**[Releases](https://github.com/tdewolff/minify/releases) of CLI for various platforms.** See [CLI](https://github.com/tdewolff/minify/tree/master/cmd/minify) for more installation instructions.
+
+**[Parse](https://github.com/tdewolff/minify/tree/master/parse) subpackage on which minify depends.**
+
+---
+
+*Did you know that the shortest valid piece of HTML5 is `
x`? See for yourself at the [W3C Validator](http://validator.w3.org/)!*
+
+Minify is a minifier package written in [Go][1]. It provides HTML5, CSS3, JS, JSON, SVG and XML minifiers and an interface to implement any other minifier. Minification is the process of removing bytes from a file (such as whitespace) without changing its output and therefore shrinking its size and speeding up transmission over the internet and possibly parsing. The implemented minifiers are designed for high performance.
+
+The core functionality associates mimetypes with minification functions, allowing embedded resources (like CSS or JS within HTML files) to be minified as well. Users can add new implementations that are triggered based on a mimetype (or pattern), or redirect to an external command (like ClosureCompiler, UglifyCSS, ...).
+
+### Sponsors
+
+[](https://www.siteground.com/)
+
+Please see https://www.patreon.com/tdewolff for ways to contribute, otherwise please contact me directly!
+
+#### Table of Contents
+
+- [Minify](#minify)
+ - [Prologue](#prologue)
+ - [Installation](#installation)
+ - [API stability](#api-stability)
+ - [Testing](#testing)
+ - [Performance](#performance)
+ - [HTML](#html)
+ - [Whitespace removal](#whitespace-removal)
+ - [CSS](#css)
+ - [JS](#js)
+ - [Comparison with other tools](#comparison-with-other-tools)
+ - [Compression ratio (lower is better)](#compression-ratio-lower-is-better)
+ - [Time (lower is better)](#time-lower-is-better)
+ - [JSON](#json)
+ - [SVG](#svg)
+ - [XML](#xml)
+ - [Usage](#usage)
+ - [New](#new)
+ - [From reader](#from-reader)
+ - [From bytes](#from-bytes)
+ - [From string](#from-string)
+ - [To reader](#to-reader)
+ - [To writer](#to-writer)
+ - [Middleware](#middleware)
+ - [Custom minifier](#custom-minifier)
+ - [Mediatypes](#mediatypes)
+ - [Examples](#examples)
+ - [Common minifiers](#common-minifiers)
+ - [External minifiers](#external-minifiers)
+ - [Closure Compiler](#closure-compiler)
+ - [UglifyJS](#uglifyjs)
+ - [esbuild](#esbuild)
+ - [Custom minifier](#custom-minifier-example)
+ - [ResponseWriter](#responsewriter)
+ - [Templates](#templates)
+ - [License](#license)
+
+### Roadmap
+
+- [ ] Use ASM/SSE to further speed-up core parts of the parsers/minifiers
+- [x] Improve JS minifiers by shortening variables and proper semicolon omission
+- [ ] Speed-up SVG minifier, it is very slow
+- [x] Proper parser error reporting and line number + column information
+- [ ] Generation of source maps (uncertain, might slow down parsers too much if it cannot run separately nicely)
+- [ ] Create a cmd to pack webfiles (much like webpack), ie. merging CSS and JS files, inlining small external files, minification and gzipping. This would work on HTML files.
+
+## Prologue
+Minifiers or bindings to minifiers exist in almost all programming languages. Some implementations are merely using several regular expressions to trim whitespace and comments (even though regex for parsing HTML/XML is ill-advised, for a good read see [Regular Expressions: Now You Have Two Problems](http://blog.codinghorror.com/regular-expressions-now-you-have-two-problems/)). Some implementations are much more profound, such as the [YUI Compressor](http://yui.github.io/yuicompressor/) and [Google Closure Compiler](https://github.com/google/closure-compiler) for JS. As most existing implementations either use JavaScript, use regexes, and don't focus on performance, they are pretty slow.
+
+This minifier proves to be that fast and extensive minifier that can handle HTML and any other filetype it may contain (CSS, JS, ...). It is usually orders of magnitude faster than existing minifiers.
+
+## Installation
+Make sure you have [Git](https://git-scm.com/) and [Go](https://golang.org/dl/) (1.13 or higher) installed, run
+```
+mkdir Project
+cd Project
+go mod init
+go get -u github.com/tdewolff/minify/v2
+```
+
+Then add the following imports to be able to use the various minifiers
+``` go
+import (
+ "github.com/tdewolff/minify/v2"
+ "github.com/tdewolff/minify/v2/css"
+ "github.com/tdewolff/minify/v2/html"
+ "github.com/tdewolff/minify/v2/js"
+ "github.com/tdewolff/minify/v2/json"
+ "github.com/tdewolff/minify/v2/svg"
+ "github.com/tdewolff/minify/v2/xml"
+)
+```
+
+You can optionally run `go mod tidy` to clean up the `go.mod` and `go.sum` files.
+
+See [CLI tool](https://github.com/tdewolff/minify/tree/master/cmd/minify) for installation instructions of the binary.
+
+### Docker
+
+If you want to use Docker, please see https://hub.docker.com/r/tdewolff/minify.
+
+## API stability
+There is no guarantee for absolute stability, but I take issues and bugs seriously and don't take API changes lightly. The library will be maintained in a compatible way unless vital bugs prevent me from doing so. There has been one API change after v1 which added options support and I took the opportunity to push through some more API clean up as well. There are no plans whatsoever for future API changes.
+
+## Testing
+For all subpackages and the imported `parse` package, test coverage of 100% is pursued. Besides full coverage, the minifiers are [fuzz tested](https://github.com/tdewolff/fuzz) using [github.com/dvyukov/go-fuzz](http://www.github.com/dvyukov/go-fuzz), see [the wiki](https://github.com/tdewolff/minify/wiki) for the most important bugs found by fuzz testing. These tests ensure that everything works as intended and that the code does not crash (whatever the input). If you still encounter a bug, please file a [bug report](https://github.com/tdewolff/minify/issues)!
+
+## Performance
+The benchmarks directory contains a number of standardized samples used to compare performance between changes. To give an indication of the speed of this library, I've ran the tests on my Thinkpad T460 (i5-6300U quad-core 2.4GHz running Arch Linux) using Go 1.15.
+
+```
+name time/op
+CSS/sample_bootstrap.css-4 2.70ms ± 0%
+CSS/sample_gumby.css-4 3.57ms ± 0%
+CSS/sample_fontawesome.css-4 767µs ± 0%
+CSS/sample_normalize.css-4 85.5µs ± 0%
+HTML/sample_amazon.html-4 15.2ms ± 0%
+HTML/sample_bbc.html-4 3.90ms ± 0%
+HTML/sample_blogpost.html-4 420µs ± 0%
+HTML/sample_es6.html-4 15.6ms ± 0%
+HTML/sample_stackoverflow.html-4 3.73ms ± 0%
+HTML/sample_wikipedia.html-4 6.60ms ± 0%
+JS/sample_ace.js-4 28.7ms ± 0%
+JS/sample_dot.js-4 357µs ± 0%
+JS/sample_jquery.js-4 10.0ms ± 0%
+JS/sample_jqueryui.js-4 20.4ms ± 0%
+JS/sample_moment.js-4 3.47ms ± 0%
+JSON/sample_large.json-4 3.25ms ± 0%
+JSON/sample_testsuite.json-4 1.74ms ± 0%
+JSON/sample_twitter.json-4 24.2µs ± 0%
+SVG/sample_arctic.svg-4 34.7ms ± 0%
+SVG/sample_gopher.svg-4 307µs ± 0%
+SVG/sample_usa.svg-4 57.4ms ± 0%
+SVG/sample_car.svg-4 18.0ms ± 0%
+SVG/sample_tiger.svg-4 5.61ms ± 0%
+XML/sample_books.xml-4 54.7µs ± 0%
+XML/sample_catalog.xml-4 33.0µs ± 0%
+XML/sample_omg.xml-4 7.17ms ± 0%
+
+name speed
+CSS/sample_bootstrap.css-4 50.7MB/s ± 0%
+CSS/sample_gumby.css-4 52.1MB/s ± 0%
+CSS/sample_fontawesome.css-4 61.2MB/s ± 0%
+CSS/sample_normalize.css-4 70.8MB/s ± 0%
+HTML/sample_amazon.html-4 31.1MB/s ± 0%
+HTML/sample_bbc.html-4 29.5MB/s ± 0%
+HTML/sample_blogpost.html-4 49.8MB/s ± 0%
+HTML/sample_es6.html-4 65.6MB/s ± 0%
+HTML/sample_stackoverflow.html-4 55.0MB/s ± 0%
+HTML/sample_wikipedia.html-4 67.5MB/s ± 0%
+JS/sample_ace.js-4 22.4MB/s ± 0%
+JS/sample_dot.js-4 14.5MB/s ± 0%
+JS/sample_jquery.js-4 24.8MB/s ± 0%
+JS/sample_jqueryui.js-4 23.0MB/s ± 0%
+JS/sample_moment.js-4 28.6MB/s ± 0%
+JSON/sample_large.json-4 234MB/s ± 0%
+JSON/sample_testsuite.json-4 394MB/s ± 0%
+JSON/sample_twitter.json-4 63.0MB/s ± 0%
+SVG/sample_arctic.svg-4 42.4MB/s ± 0%
+SVG/sample_gopher.svg-4 19.0MB/s ± 0%
+SVG/sample_usa.svg-4 17.8MB/s ± 0%
+SVG/sample_car.svg-4 29.3MB/s ± 0%
+SVG/sample_tiger.svg-4 12.2MB/s ± 0%
+XML/sample_books.xml-4 81.0MB/s ± 0%
+XML/sample_catalog.xml-4 58.6MB/s ± 0%
+XML/sample_omg.xml-4 159MB/s ± 0%
+```
+
+## HTML
+
+HTML (with JS and CSS) minification typically shaves off about 10%.
+
+The HTML5 minifier uses these minifications:
+
+- strip unnecessary whitespace and otherwise collapse it to one space (or newline if it originally contained a newline)
+- strip superfluous quotes, or uses single/double quotes whichever requires fewer escapes
+- strip default attribute values and attribute boolean values
+- strip some empty attributes
+- strip unrequired tags (`html`, `head`, `body`, ...)
+- strip unrequired end tags (`tr`, `td`, `li`, ... and often `p`)
+- strip default protocols (`http:`, `https:` and `javascript:`)
+- strip all comments (including conditional comments, old IE versions are not supported anymore by Microsoft)
+- shorten `doctype` and `meta` charset
+- lowercase tags, attributes and some values to enhance gzip compression
+
+Options:
+
+- `KeepConditionalComments` preserve all IE conditional comments such as `` and ``, see https://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx#syntax
+- `KeepDefaultAttrVals` preserve default attribute values such as `