You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if !compile::front(proj,&changes).await.await??.is_success(){
returnOk(false);
}
if !compile::assets(proj,&changes,true)
.await
.await??
.is_success()
{
returnOk(false);
}
if !compile::style(proj,&changes).await.await??.is_success(){
returnOk(false);
}
where it just returns and doesn't load any assets if the build fails. Further style changes are only added iteratively.
I assume we can just run the compile::assets and compile::styles functions (and possibly others) regardless of success or failure. Maybe I'll drop a PR for this later.
The text was updated successfully, but these errors were encountered:
This has been a surprisingly annoying issue for me. I think it's caused by
cargo-leptos/src/command/build.rs
Lines 38 to 50 in d36a187
I assume we can just run the
compile::assets
andcompile::styles
functions (and possibly others) regardless of success or failure. Maybe I'll drop a PR for this later.The text was updated successfully, but these errors were encountered: