Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated packages and comments referencing old CLI location #1786

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tailwind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example shows how an app might be styled with TailwindCSS.
1. Install the Dioxus CLI:

```bash
cargo install --git https://github.com/DioxusLabs/cli
cargo install dioxus-cli
```

2. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/assets/autoreload.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Dioxus-CLI
// https://github.com/DioxusLabs/cli
// https://github.com/DioxusLabs/dioxus/tree/master/packages/cli

(function () {
var protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
Expand All @@ -22,4 +22,4 @@
}
};
ws.onclose = reload_upon_connect;
})()
})()
2 changes: 1 addition & 1 deletion packages/hot-reload/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ rsx! {

## Usage

> This crate implements hot reloading for native compilation targets not WASM. For hot relaoding with the web renderer, see the [dioxus-cli](https://github.com/DioxusLabs/cli) project.
> This crate implements hot reloading for native compilation targets not WASM. For hot relaoding with the web renderer, see the [dioxus-cli](https://github.com/DioxusLabs/dioxus/tree/master/packages/cli) project.

Add this to the top of your main function on any renderer that supports hot reloading to start the hot reloading server:

Expand Down
Loading