From 3ba8b70bd183de06138745ef1a24d7a93097d587 Mon Sep 17 00:00:00 2001 From: marvin-borner@live.com Date: Fri, 13 Apr 2018 18:07:12 +0200 Subject: added minifying support -- needs optimization though --- .../minify/data/js/keywords_after.txt | 7 +++ .../minify/data/js/keywords_before.txt | 26 +++++++++ .../minify/data/js/keywords_reserved.txt | 63 ++++++++++++++++++++++ .../matthiasmullie/minify/data/js/operators.txt | 46 ++++++++++++++++ .../minify/data/js/operators_after.txt | 43 +++++++++++++++ .../minify/data/js/operators_before.txt | 43 +++++++++++++++ 6 files changed, 228 insertions(+) create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/keywords_after.txt create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/keywords_before.txt create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/operators.txt create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/operators_after.txt create mode 100644 assets/php/vendor/matthiasmullie/minify/data/js/operators_before.txt (limited to 'assets/php/vendor/matthiasmullie/minify/data') diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/keywords_after.txt b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_after.txt new file mode 100644 index 0000000..5c8cba7 --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_after.txt @@ -0,0 +1,7 @@ +in +public +extends +private +protected +implements +instanceof \ No newline at end of file diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/keywords_before.txt b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_before.txt new file mode 100644 index 0000000..5abf357 --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_before.txt @@ -0,0 +1,26 @@ +do +in +let +new +var +case +else +enum +void +with +class +const +yield +delete +export +import +public +static +typeof +extends +package +private +function +protected +implements +instanceof \ No newline at end of file diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt new file mode 100644 index 0000000..2a3ad3c --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt @@ -0,0 +1,63 @@ +do +if +in +for +let +new +try +var +case +else +enum +eval +null +this +true +void +with +break +catch +class +const +false +super +throw +while +yield +delete +export +import +public +return +static +switch +typeof +default +extends +finally +package +private +continue +debugger +function +arguments +interface +protected +implements +instanceof +abstract +boolean +byte +char +double +final +float +goto +int +long +native +short +synchronized +throws +transient +volatile \ No newline at end of file diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/operators.txt b/assets/php/vendor/matthiasmullie/minify/data/js/operators.txt new file mode 100644 index 0000000..e66229a --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/operators.txt @@ -0,0 +1,46 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +~ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +! +. +[ +] +? +: +, +; +( +) +{ +} \ No newline at end of file diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/operators_after.txt b/assets/php/vendor/matthiasmullie/minify/data/js/operators_after.txt new file mode 100644 index 0000000..71a9b70 --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/operators_after.txt @@ -0,0 +1,43 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +. +[ +] +? +: +, +; +( +) +} \ No newline at end of file diff --git a/assets/php/vendor/matthiasmullie/minify/data/js/operators_before.txt b/assets/php/vendor/matthiasmullie/minify/data/js/operators_before.txt new file mode 100644 index 0000000..ff50d87 --- /dev/null +++ b/assets/php/vendor/matthiasmullie/minify/data/js/operators_before.txt @@ -0,0 +1,43 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +~ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +! +. +[ +? +: +, +; +( +{ -- cgit v1.2.3