Skip to content

kaledis build

The build command transpiles your code and packages it into a .love file.

Terminal window
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.
  1. Transpilation: Converts .luau files to .lua.
  2. Processing: Handles imports and polyfills.
  3. Assets: Copies files from the assets directory.
  4. Packaging: Zips everything into a .love file in the .build or dist directory.

The output file is typically named [ProjectName].love and can be run with any Love2D interpreter.