diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-25 11:16:21 -0700 |
commit | 9ae185c18eb06e3ce7e2daea0c61e6f6478bdca9 (patch) | |
tree | ace22189e031f7f78639f743a872d86c3a65eda0 /libs/minify/data | |
parent | 2bf0f99b519aec5b2068a689a8051d88154e3850 (diff) |
Remove dependency on Sass
- Convert *.sass files to vanilla CSS
- Start using CSS variables
- Add PHP minifier
Diffstat (limited to 'libs/minify/data')
-rwxr-xr-x | libs/minify/data/js/keywords_after.txt | 7 | ||||
-rwxr-xr-x | libs/minify/data/js/keywords_before.txt | 26 | ||||
-rwxr-xr-x | libs/minify/data/js/keywords_reserved.txt | 63 | ||||
-rwxr-xr-x | libs/minify/data/js/operators.txt | 46 | ||||
-rwxr-xr-x | libs/minify/data/js/operators_after.txt | 43 | ||||
-rwxr-xr-x | libs/minify/data/js/operators_before.txt | 43 |
6 files changed, 228 insertions, 0 deletions
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 @@ ++ +- +* +/ +% += ++= +-= +*= +/= +%= +<<= +>>= +>>>= +&= +^= +|= +& +| +^ +~ +<< +>> +>>> +== +=== +!= +!== +> +< +>= +<= +&& +|| +! +. +[ +? +: +, +; +( +{ |