From 9dd4427cb50b0fe1bf33f67c0728eb911e71129d Mon Sep 17 00:00:00 2001 From: Miles Murgaw Date: Thu, 27 Jun 2024 19:22:32 -0400 Subject: [PATCH] revision: cli-dev profile section (#2560) --- packages/cli/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/cli/README.md b/packages/cli/README.md index 5da0be80b..08f647ca9 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -33,6 +33,12 @@ Note: The CLI will fail to build projects in debug profile. This is currently un cargo install --path . --release ``` +### Developing The CLI +It's faster to build the CLI using the `cli-dev` profile when testing changes. +```shell +cargo build --profile cli-dev +``` + ## Get started Use `dx new` to initialize a new Dioxus project.