make clippy happy

This commit is contained in:
Evan Almloff 2023-08-18 13:57:05 -05:00
parent bd743fa2f9
commit e3aac14ec9

View file

@ -111,7 +111,7 @@ async fn serve_hot_reload<P: Platform + Send + 'static>(
for channel in &mut *channels.lock().unwrap() { for channel in &mut *channels.lock().unwrap() {
send_msg(HotReloadMsg::Shutdown, channel); send_msg(HotReloadMsg::Shutdown, channel);
} }
Ok(platform.write().unwrap().rebuild(&config)?) platform.write().unwrap().rebuild(&config)
} }
}, },
None, None,
@ -234,13 +234,13 @@ pub(crate) struct DesktopPlatform {
impl Platform for DesktopPlatform { impl Platform for DesktopPlatform {
fn start(config: &CrateConfig, _serve: &ConfigOptsServe) -> Result<Self> { fn start(config: &CrateConfig, _serve: &ConfigOptsServe) -> Result<Self> {
let (child, first_build_result) = start_desktop(&config)?; let (child, first_build_result) = start_desktop(config)?;
log::info!("🚀 Starting development server..."); log::info!("🚀 Starting development server...");
// Print serve info // Print serve info
print_console_info( print_console_info(
&config, config,
PrettierOptions { PrettierOptions {
changed: vec![], changed: vec![],
warnings: first_build_result.warnings, warnings: first_build_result.warnings,
@ -256,7 +256,7 @@ impl Platform for DesktopPlatform {
fn rebuild(&mut self, config: &CrateConfig) -> Result<BuildResult> { fn rebuild(&mut self, config: &CrateConfig) -> Result<BuildResult> {
self.currently_running_child.kill()?; self.currently_running_child.kill()?;
let (child, result) = start_desktop(&config)?; let (child, result) = start_desktop(config)?;
self.currently_running_child = child; self.currently_running_child = child;
Ok(result) Ok(result)
} }