summaryrefslogtreecommitdiffstats
path: root/vendor/minifier/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/minifier/src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/minifier/src/lib.rs b/vendor/minifier/src/lib.rs
new file mode 100644
index 000000000..a88f9abb8
--- /dev/null
+++ b/vendor/minifier/src/lib.rs
@@ -0,0 +1,10 @@
+// Take a look at the license at the top of the repository in the LICENSE file.
+
+#[cfg(feature = "html")]
+extern crate regex;
+
+pub mod css;
+#[cfg(feature = "html")]
+pub mod html;
+pub mod js;
+pub mod json;