From 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 25 Jul 2019 11:16:21 -0700 Subject: Remove dependency on Sass - Convert *.sass files to vanilla CSS - Start using CSS variables - Add PHP minifier --- libs/minify/data/js/keywords_after.txt | 7 ++++ libs/minify/data/js/keywords_before.txt | 26 +++++++++++++ libs/minify/data/js/keywords_reserved.txt | 63 +++++++++++++++++++++++++++++++ libs/minify/data/js/operators.txt | 46 ++++++++++++++++++++++ libs/minify/data/js/operators_after.txt | 43 +++++++++++++++++++++ libs/minify/data/js/operators_before.txt | 43 +++++++++++++++++++++ 6 files changed, 228 insertions(+) create mode 100755 libs/minify/data/js/keywords_after.txt create mode 100755 libs/minify/data/js/keywords_before.txt create mode 100755 libs/minify/data/js/keywords_reserved.txt create mode 100755 libs/minify/data/js/operators.txt create mode 100755 libs/minify/data/js/operators_after.txt create mode 100755 libs/minify/data/js/operators_before.txt (limited to 'libs/minify/data') diff --git a/libs/minify/data/js/keywords_after.txt b/libs/minify/data/js/keywords_after.txt new file mode 100755 index 00000000..5c8cba7f --- /dev/null +++ b/libs/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/libs/minify/data/js/keywords_before.txt b/libs/minify/data/js/keywords_before.txt new file mode 100755 index 00000000..5abf3579 --- /dev/null +++ b/libs/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/libs/minify/data/js/keywords_reserved.txt b/libs/minify/data/js/keywords_reserved.txt new file mode 100755 index 00000000..2a3ad3c0 --- /dev/null +++ b/libs/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/libs/minify/data/js/operators.txt b/libs/minify/data/js/operators.txt new file mode 100755 index 00000000..e66229ae --- /dev/null +++ b/libs/minify/data/js/operators.txt @@ -0,0 +1,46 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +~ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +! +. +[ +] +? +: +, +; +( +) +{ +} \ No newline at end of file diff --git a/libs/minify/data/js/operators_after.txt b/libs/minify/data/js/operators_after.txt new file mode 100755 index 00000000..71a9b709 --- /dev/null +++ b/libs/minify/data/js/operators_after.txt @@ -0,0 +1,43 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +. +[ +] +? +: +, +; +( +) +} \ No newline at end of file diff --git a/libs/minify/data/js/operators_before.txt b/libs/minify/data/js/operators_before.txt new file mode 100755 index 00000000..ff50d870 --- /dev/null +++ b/libs/minify/data/js/operators_before.txt @@ -0,0 +1,43 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +~ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +! +. +[ +? +: +, +; +( +{ -- cgit v1.2.3