diff --git a/crates/cli/src/compile/tailwind.rs b/crates/cli/src/compile/tailwind.rs index 6cf76f2..cf73551 100644 --- a/crates/cli/src/compile/tailwind.rs +++ b/crates/cli/src/compile/tailwind.rs @@ -65,7 +65,14 @@ async fn create_default_tailwind_config(tw_conf: &TailwindConfig) -> Result<()> pub async fn tailwind_process(cmd: &str, tw_conf: &TailwindConfig) -> Result<(String, Command)> { let tailwind = Exe::Tailwind.get().await.dot()?; - let args: Vec<&str> = vec!["--input", tw_conf.input_file.as_str(), "--output", tw_conf.output_file.as_str(), "--config", tw_conf.config_file.as_str()]; + let args: Vec<&str> = vec![ + "--input", + tw_conf.input_file.as_str(), + "--output", + tw_conf.output_file.as_str(), + "--config", + tw_conf.config_file.as_str(), + ]; let line = format!("{} {}", cmd, args.join(" ")); let mut command = Command::new(tailwind); command.args(args); diff --git a/crates/core/src/web/events/csr.rs b/crates/core/src/web/events/csr.rs index c7985ab..10569d4 100644 --- a/crates/core/src/web/events/csr.rs +++ b/crates/core/src/web/events/csr.rs @@ -81,4 +81,4 @@ impl Custom { /// Creates a custom event type, this is equal to [`Custom::new`]. pub fn custom(name: impl Into>) -> Custom { Custom::new(name) -} \ No newline at end of file +} diff --git a/crates/core/src/web/events/ssr.rs b/crates/core/src/web/events/ssr.rs index 8cc4dde..8532a99 100644 --- a/crates/core/src/web/events/ssr.rs +++ b/crates/core/src/web/events/ssr.rs @@ -78,4 +78,4 @@ impl Custom { /// Creates a custom event type, this is equal to [`Custom::new`]. pub fn custom(name: impl Into>) -> Custom { Custom::new(name) -} \ No newline at end of file +}