I\'ve embedded lua together with a bytecode chunk into a project written in C. Now when I extend my lua code base by adding .lua files, is there a way to keep this code in a sin
After tried luac, luajit and squish, I found all of them requires you to maintain a file list to combine. That is tiresome when working on a project contain many lua files.
So I wrote a little tool to merge lua files by analyzing require
s
Here it is: https://github.com/yi/node-lua-distiller
Hope it will helpful.