-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: rename wasm_builder_cli to wasm_builder
Signed-off-by: Marin Veršić <[email protected]>
- Loading branch information
Showing
8 changed files
with
27 additions
and
23 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
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
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
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,23 +1,23 @@ | ||
# `iroha_wasm_builder_cli` | ||
# `wasm_builder` | ||
|
||
A CLI around [`iroha_wasm_builder`](../wasm_builder) crate. | ||
A CLI for building wasm smartcontracts. | ||
|
||
## Usage | ||
|
||
**Check the smartcontract:** | ||
|
||
```bash | ||
iroha_wasm_builder_cli check path/to/project | ||
wasm_builder check path/to/project | ||
``` | ||
|
||
**Build the smartcontract:** | ||
|
||
```bash | ||
iroha_wasm_builder_cli build path/to/project --outfile ./smartcontract.wasm | ||
wasm_builder build path/to/project --outfile ./smartcontract.wasm | ||
``` | ||
|
||
**Build with options:** | ||
|
||
```bash | ||
iroha_wasm_builder_cli build path/to/project --optimize --format --outfile ./smartcontract.wasm | ||
wasm_builder build path/to/project --optimize --format --outfile ./smartcontract.wasm | ||
``` |
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