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
I usually have cargo watch -x "web deploy" running (in parallel with browser-sync for auto-reload), this is the output:
[Running 'cargo web deploy']
Compiling stdweb-internal-runtime v0.1.5
Compiling stdweb v0.4.20
Compiling web_logger v0.2.0
Compiling yew v0.12.0
Compiling frontend v0.1.0 (D:\projects\myproject\frontend)
Finished dev [unoptimized + debuginfo] target(s) in 36.72s
Processing "frontend.wasm"...
Finished processing of "frontend.wasm"!
It takes ~37 seconds just to recompile after just doing cargo check in the editor, with no source changes! This is very annoying for productivity because it takes away so much accumulated time from the development workflow/cycle!
Can you please only recompile stdweb-internal-runtime when absolutely necessary, i.e. not when doing cargo check?
The text was updated successfully, but these errors were encountered:
Whenever I switch between doing
cargo check
in Sublime Text andcargo web deploy
in cmd.exe, it causes unnecessary recompilation due to this line:stdweb/stdweb-internal-runtime/build.rs
Line 62 in 9b418d9
I usually have
cargo watch -x "web deploy"
running (in parallel with browser-sync for auto-reload), this is the output:It takes ~37 seconds just to recompile after just doing
cargo check
in the editor, with no source changes! This is very annoying for productivity because it takes away so much accumulated time from the development workflow/cycle!Can you please only recompile
stdweb-internal-runtime
when absolutely necessary, i.e. not when doingcargo check
?The text was updated successfully, but these errors were encountered: