-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support for wildcard and an option to ignore sheets
- Loading branch information
Showing
5 changed files
with
31 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/target | ||
/*.xlsx | ||
/out |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 = "ryver" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["piquu [email protected]"] | ||
license = "MIT" | ||
|
@@ -19,3 +19,4 @@ clap = { version = "4.5.4", features = ["derive"] } | |
color-eyre = "0.6.3" | ||
tracing = "0.1.40" | ||
tracing-subscriber = "0.3.18" | ||
wildmatch = "2.3.3" |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ A Cli that generates luau/ts files from spreadsheets | |
### With Aftman | ||
Add an entry to the `[tools]` section of `aftman.toml`: | ||
```toml | ||
river = "piquu/[email protected].0" | ||
river = "piquu/[email protected].2" | ||
``` | ||
|
||
Or use the `aftman` Cli to add it: | ||
|
@@ -28,6 +28,8 @@ cargo install ryver | |
* Folder where the luau/ts files are put | ||
* `-s`, `--sheet <SHEET>` | ||
* Sheets that luau/ts files should be generated for | ||
* `-i`, `--ignore-sheet` | ||
* Sheets that luau/ts files wont be generated for | ||
* `--table-name <NUMBER>` | ||
* Spreadsheet column thats used as the table/object name | ||
* `-n`, `--no-type` | ||
|
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