-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "boon" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["Cameron McHenry <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ Licensed under the MIT License. | |
* 11.x | ||
* 0.10.2 | ||
* No external dependencies | ||
* Deploy to multiple destinations (coming soon) | ||
|
||
# Getting started | ||
|
||
|
@@ -34,6 +33,8 @@ If you're a **Linux** user, download the `boon-linux-amd64` file. | |
|
||
## Usage | ||
|
||
In general, if you need help figuring out how to use a command you can pass the `--help` option to see possible arguments, options, and subcommands. To get started and see the top-level commands and options, run `boon --help`. | ||
|
||
### Initialization | ||
To start using boon with your project, it is recommended to first initialize it. This will create a `Boon.toml` file that will let you configure the settings for your project. | ||
|
||
|
@@ -62,6 +63,8 @@ $ boon build . | |
|
||
Without a target specified, this will build a `.love` file and put it in the `release` directory. This is shorthand for `boon build <dir> --target love` | ||
|
||
It is possible to build all targets simultaneously by passing `all` as the target, for example, `boon build . --target all`. | ||
|
||
#### Building for Windows | ||
|
||
To build a Windows application: | ||
|
@@ -96,5 +99,5 @@ git clone [email protected]:camchenry/boon.git | |
cd boon | ||
cargo build --release | ||
./target/release/boon --version | ||
boon 0.1.0 | ||
boon 0.2.0 | ||
``` |