webpack-glsl-minify
webpack-glsl-minify copied to clipboard
Fixed a case where ".0" is being reduced to "."
There's a rule which helps to reduce floats written as "5.0" to "5.", but if someone is already using this notation and has i.e. ".0" in the code it will be reduced to ".". This PR addresses this case so there must be a number before the dot to omit the following zero.