potatOS/minify
osmarks 383991c739 fix SPUDNET bug, and quite possibly other bugs 2022-02-20 14:32:14 +00:00
..
tests performance improvements, probably 2021-03-31 19:58:54 +01:00
CommandLineBeautify.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
CommandLineLiveBeautify.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
CommandLineLiveMinify.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
CommandLineMinify.lua fix SPUDNET bug, and quite possibly other bugs 2022-02-20 14:32:14 +00:00
FormatBeautiful.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
FormatIdentity.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
FormatMini.lua fix SPUDNET bug, and quite possibly other bugs 2022-02-20 14:32:14 +00:00
LICENSE.md performance improvements, probably 2021-03-31 19:58:54 +01:00
ParseLua.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
README.md performance improvements, probably 2021-03-31 19:58:54 +01:00
Scope.lua fix SPUDNET bug, and quite possibly other bugs 2022-02-20 14:32:14 +00:00
Util.lua performance improvements, probably 2021-03-31 19:58:54 +01:00
strict.lua performance improvements, probably 2021-03-31 19:58:54 +01:00

README.md

Lua Parsing and Refactorization tools

A collection of tools for working with Lua source code. Primarily a Lua source code minifier, but also includes some static analysis tools and a general Lua lexer and parser.

Currently the minifier performs:

  • Stripping of all comments and whitespace
  • True semantic renaming of all local variables to a reduced form
  • Reduces the source to the minimal spacing, spaces are only inserted where actually needed.

LuaMinify Command Line Utility Usage

The LuaMinify shell and batch files are given as shortcuts to running a command line instance of the minifier with the following usage:

LuaMinify sourcefile [destfile]

Which will minify to a given destination file, or to a copy of the source file with _min appended to the filename if no output file is given.

LuaMinify Roblox Plugin Usage

First, download the source code, which you can do by hitting this button:

Click That

Then copy the RobloxPlugin folder from the source into your Roblox Plugins directory, which can be found by hitting Tools->Open Plugins Folder in Roblox Studio.

Features/Todo

Features:

- Lua scanner/parser, which generates a full AST
- Lua reconstructor
    - minimal
    - full reconstruction (TODO: options, comments)
    - TODO: exact reconstructor
- support for embedded long strings/comments e.g. [[abc [[ def ]] ghi]]

Todo: - use table.concat instead of appends in the reconstructors