LeCodes CLI 0.19.0
====================

Compile and preview LeCodes projects locally — no account or login required.

First, put it on your PATH (optional but recommended):

  ./lecodes install             copy this bundle to a library folder and expose "lecodes" (add
                                --modify-path to also put it on your PATH; --system for all users
                                on Linux/macOS, which lands in /usr/local/bin — already on PATH).

Then:

  lecodes init [dir]            scaffold a new local project (starter + types + tsconfig)
  lecodes compile -o app.js     compile the local project to a self-contained .js
                                (runnable by LeCodes Desktop: put app.js next to the
                                 desktop binary, or pass it as an argument)
  lecodes dev                   run the project on a device with hot reload — starts a
                                LAN dev server and prints a QR code; every save
                                recompiles and hot-swaps the running app
  lecodes help                  the full command list

Not in this build: render / test / design / scene / assets load optional packages
(lecodes-renderer, lecodes-design, lecodes-3d-editor, lecodes-assets) from node_modules,
which this standalone bundle has none of. For those, install the CLI from npm instead:
"npm install -g lecodes-cli" plus the package you need, installed the same way.

Keep the "runtime/" folder and the chisel binary next to the lecodes binary (or let
"lecodes install" place the whole bundle for you).
