bundle-lua 0.5.2

Bundle Lua scripts into a single file
1
2
3
4
5
6
7
8
9
10
11
12
13
# Bundle Lua


A crate to bundle lua files together, usage:

```bash
bundle-lua <OUTPUT> <SOURCE_DIR> <MAIN> [PACKAGES]...
```

`MAIN` and `PACKAGES`... are relative to `SOURCE_DIR`.

The arguments used in `PACKAGES` should be the arguments used in the `require`s.

You can add `--auto-detect` (`-a`) to make it automatically detect the packages from the main file.