-
-
Notifications
You must be signed in to change notification settings - Fork 41
Minification of generated code
Jason Godson edited this page Jun 21, 2019
·
1 revision
If your script goes over the character count, you can try to keep it under the limit by minifying your script.
Minification is the process of reducing the size of the file by reducing character count. There are many ways to do this, which is why there are different levels of minification offered (or may be in the future).
This level removes comments and new lines from the generated code
In addition to what level 1 does, this will compact some longer names in the script into a smaller version of the name throughout the script to save even more characters. (eg: CustomerTagQualifier
might change into z
)