kaledis 1.3.1

A new way to LÖVE. Kaledis is a tool for allowing Luau to be used with Love2D via transpiling, alongside providing easier & simpler management of Love2D projects.
# Usage


by default [PATH] is the directory kaledis is executed on.

## `init`

Initializes a new Love2D project.
```sh
kaledis init [PATH]
```

## `build`

Transpiles the project and builds a .love file inside the '.build' directory.
```sh
kaledis build [PATH] -o
```
The -o flag joins all files in a single one.

## `compile`

Compiles the project into a executable inside the 'dist' folder.
```sh
kaledis compile [PATH] -o
```
The -o flag joins all files in a single one.

## `dev`

Watches for changes in your project, builds and executes love automatically/manual
```sh
kaledis dev [PATH]
```

## `update`

Tries to update to the latest release using github releases.
```sh
kaledis update
```