Quellcode durchsuchen

Rename dioxus to dx

Jonathan Kelley vor 1 Jahr
Ursprung
Commit
31a68a9743

+ 1 - 1
packages/cli/docs/src/cmd/build.md

@@ -43,7 +43,7 @@ dx build --platform web
 You can add the `--bin` option to select which crate you want Dioxus to build:
 
 ```
-dioxus build --bin app
+dx build --bin app
 ```
 
 ## Build Example

+ 1 - 1
packages/cli/docs/src/cmd/clean.md

@@ -23,5 +23,5 @@ dx clean
 You can add the `--bin` option to select which crate you want Dioxus to clean artifacts from:
 
 ```
-dioxus clean --bin app
+dx clean --bin app
 ```

+ 1 - 1
packages/cli/docs/src/cmd/serve.md

@@ -37,7 +37,7 @@ dx serve --exmaple test
 You can add the `--bin` option to select which crate you want Dioxus to build and serve:
 
 ```
-dioxus serve --bin app
+dx serve --bin app
 ```
 
 ## Open Browser

+ 1 - 1
packages/cli/docs/src/creating.md

@@ -7,7 +7,7 @@ Once you have the Dioxus CLI tool installed, you can use it to create dioxus pro
 First, run the `dx create` command to create a new project ready to be used with Dioxus and the Dioxus CLI:
 
 ```
-dioxus create hello-dioxus
+dx create hello-dioxus
 ```
 
 > It will clone a default template from github template: [DioxusLabs/dioxus-template](https://github.com/DioxusLabs/dioxus-template)

+ 1 - 1
packages/fullstack/examples/axum-auth/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```
 

+ 1 - 1
packages/fullstack/examples/axum-hello-world/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```
 

+ 1 - 1
packages/fullstack/examples/axum-router/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```
 

+ 1 - 1
packages/fullstack/examples/salvo-hello-world/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```
 

+ 1 - 1
packages/fullstack/examples/static-hydrated/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```
 

+ 1 - 1
packages/fullstack/examples/warp-hello-world/src/main.rs

@@ -1,7 +1,7 @@
 //! Run with:
 //!
 //! ```sh
-//! dioxus build --features web
+//! dx build --features web
 //! cargo run --features ssr
 //! ```