You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I read the generated code it often repeats strings like "validation failed at ", ": there are no valid alternatives", ": expected an object" and many more. Putting those to const variables and then using only those consts instead should help to reduce the size. Or maybe better to create error message builder functions like this:
function expectedProperty(path, property) {
return `validation failed at ${path.join(".")}: expected '${property}' in object`;
}
Minifiers will also minify function and variable names.
The text was updated successfully, but these errors were encountered:
zdila
changed the title
Make generated code smaller by putting reusable strings to constants
Make generated code smaller by putting reusable strings to constants or functions
May 7, 2022
When I read the generated code it often repeats strings like
"validation failed at "
,": there are no valid alternatives"
,": expected an object"
and many more. Putting those to const variables and then using only those consts instead should help to reduce the size. Or maybe better to create error message builder functions like this:Minifiers will also minify function and variable names.
The text was updated successfully, but these errors were encountered: