Unisay / purescript-lua

Purescript compiler back-end for Lua
GNU General Public License v3.0
55 stars 2 forks source link

Introduce a new non-bundling compilation mode #27

Open Renegatto opened 2 months ago

Renegatto commented 2 months ago

Currently purescript-lua only support bundling, I.e. merging all the modules into the one lua file. However it is often needed to keep the initial directory structure and keep lua modules small.

So the proposal is to add a new compilation mode (--module?) that would preserve source tree structure in a filesystem level.

This compilation would look like this:

foo/Foo.purs
foo/Bar/Baz.purs

->

foo/Foo.lua
foo/Bar/Baz.lua

Or something like.

Note, that there are may be some pitfalls to consider. See: https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1445