1
0
Jonathan Kelley 9 сар өмнө
parent
commit
33841c054d

+ 1 - 1
packages/cli/Cargo.toml

@@ -120,7 +120,7 @@ built = { version = "=0.7.4", features = ["git2"] }
 default = []
 plugin = []
 tokio-console = ["dep:console-subscriber"]
-# optimizations = ["dep:wasm-opt"]
+optimizations = ["dep:wasm-opt"]
 
 [[bin]]
 path = "src/main.rs"

+ 13 - 3
packages/cli/src/config.rs

@@ -7,9 +7,19 @@ use std::path::PathBuf;
 use std::str::FromStr;
 
 #[derive(
-    Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize, Debug, Default,
+    Copy,
+    Clone,
+    Hash,
+    PartialEq,
+    Eq,
+    PartialOrd,
+    Ord,
+    Serialize,
+    Deserialize,
+    Debug,
+    Default,
+    clap::ValueEnum,
 )]
-#[derive(clap::ValueEnum)]
 #[non_exhaustive]
 pub enum Platform {
     /// Targeting the web platform using WASM
@@ -29,7 +39,7 @@ pub enum Platform {
     Fullstack,
 
     /// Targeting the static generation platform using SSR and Dioxus-Fullstack
-    #[ clap(name = "static-generation")]
+    #[clap(name = "static-generation")]
     #[serde(rename = "static-generation")]
     StaticGeneration,