kaledis build
The build command transpiles your code and packages it into a .love file.
kaledis build [PATH] [FLAGS]PATH(Optional): Path to the project root. Defaults to current directory.
-o,--one-file: Joins all transpiled Lua files into a single file.
Build Process
Section titled “Build Process”- Transpilation: Converts
.luaufiles to.lua. - Processing: Handles imports and polyfills.
- Assets: Copies files from the assets directory.
- Packaging: Zips everything into a
.lovefile in the.buildordistdirectory.
Output
Section titled “Output”The output file is typically named [ProjectName].love and can be run with any Love2D interpreter.