mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
docs(cli): re-sync dx --help
output
This commit is contained in:
parent
8f8627af18
commit
420bc39ecc
1 changed files with 18 additions and 15 deletions
|
@ -5,22 +5,25 @@ In this chapter we will introduce all `dioxus-cli` commands.
|
||||||
> You can also use `dx --help` to get cli help info.
|
> You can also use `dx --help` to get cli help info.
|
||||||
|
|
||||||
```
|
```
|
||||||
dx
|
Build, Bundle & Ship Dioxus Apps
|
||||||
Build, bundle, & ship your Dioxus app
|
|
||||||
|
|
||||||
USAGE:
|
Usage: dx [OPTIONS] <COMMAND>
|
||||||
dx [OPTIONS] <SUBCOMMAND>
|
|
||||||
|
|
||||||
OPTIONS:
|
Commands:
|
||||||
-h, --help Print help information
|
build Build the Rust WASM app and all of its assets
|
||||||
-v Enable verbose logging
|
translate Translate some source file into Dioxus code
|
||||||
|
serve Build, watch & serve the Rust WASM app and all of its assets
|
||||||
|
create Init a new project for Dioxus
|
||||||
|
clean Clean output artifacts
|
||||||
|
version Print the version of this extension
|
||||||
|
fmt Format some rsx
|
||||||
|
check Check the Rust files in the project for issues
|
||||||
|
config Dioxus config file controls
|
||||||
|
help Print this message or the help of the given subcommand(s)
|
||||||
|
|
||||||
SUBCOMMANDS:
|
Options:
|
||||||
build Build the Dioxus application and all of its assets
|
-v Enable verbose logging
|
||||||
clean Clean output artifacts
|
--bin <BIN> Specify bin target
|
||||||
config Dioxus config file controls
|
-h, --help Print help
|
||||||
create Init a new project for Dioxus
|
-V, --version Print version
|
||||||
help Print this message or the help of the given subcommand(s)
|
|
||||||
serve Build, watch & serve the Rust WASM app and all of its assets
|
|
||||||
translate Translate some html file into a Dioxus component
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue