Forráskód Böngészése

feat: commit code

mrxiaozhuox 3 éve
szülő
commit
6b0d57abe5
2 módosított fájl, 3 hozzáadás és 3 törlés
  1. 1 1
      Cargo.toml
  2. 2 2
      src/server/mod.rs

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-cli"
-version = "0.1.3"
+version = "0.1.4"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "CLI tool for developing, testing, and publishing Dioxus apps"

+ 2 - 2
src/server/mod.rs

@@ -33,6 +33,7 @@ pub async fn startup(config: CrateConfig) -> Result<()> {
     // file watcher: check file change
     let watcher_conf = config.clone();
     let mut watcher = RecommendedWatcher::new(move |_: notify::Result<notify::Event>| {
+        log::info!("Start to rebuild project...");
         if chrono::Local::now().timestamp() > last_update_time
             && builder::build(&watcher_conf).is_ok()
         {
@@ -47,8 +48,7 @@ pub async fn startup(config: CrateConfig) -> Result<()> {
             {
                 let _ = Serve::regen_dev_page(&watcher_conf);
             }
-            println!("watcher send reload");
-            reload_tx.send("reload".into()).unwrap();
+            let _ = reload_tx.send("reload".into());
             last_update_time = chrono::Local::now().timestamp();
         }
     })