mathiasbynens / luamin

A Lua minifier written in JavaScript
https://mths.be/luamin
MIT License
216 stars 55 forks source link

Compatibility request #85

Closed phoriah closed 1 year ago

phoriah commented 2 years ago

I'm using this for minifying LUAU (A fork of LUA made by Roblox) and it has compound operators, which aren't supported in native LUA therefore it results in unexpected identifier error (I use it through VSCode extension https://github.com/informagico/vscode-lua-minify) Example: i += 1 is same as i = i + 1 List of all compound operators https://developer.roblox.com/en-us/articles/#Comp

Could you add support for these, please