When i run wrangler preview --watch it's installing on every change those packages. Is that normal? It takes lot of time on every change.
rustc -V: Is not installednode -v: v12.5.0wrangler -V: wrangler 1.4.0Empty new Project and then preview it with watch
Faster loading without installing on every change that package
Taking time on every change to install that package
Bump! Would like a way to not have to install wrangler and wasm-pack every time I publish my worker.
@ashleymichal @ashleygwilliams Will this be implemented into the next release? Installing wrangler-js and wasm-pack on every publish is super slow :( (Plus I don't even use wasm in my code)
Maybe just showing a message saying there's an update to one of the packages would be helpful? So we know when we need to update it :)
currently we check to see if the latest version of the binary we need is installed on the system. We need to instead check if the latest version is installed in the install directory. this is difficult because our install directory is full of things like wranglerjs-789087 that don't have the version names in the directories.
1) When we download, we should put the version number in the directory number
2) When we check if we need an install, we should see if the version number already exists in the download folder (optionally also check the system version)
3) If there is an updated version we need to install, we should install that and clean up the old one
馃コ This is awesome!
@EverlastingBugstopper this is still happening for me on every save when running wrangler dev. Is there something I need to install locally?

Sorry, I don't work at Cloudflare anymore. Might be worth opening a new issue for it 馃榿
Most helpful comment
currently we check to see if the latest version of the binary we need is installed on the system. We need to instead check if the latest version is installed in the install directory. this is difficult because our install directory is full of things like
wranglerjs-789087that don't have the version names in the directories.1) When we download, we should put the version number in the directory number
2) When we check if we need an install, we should see if the version number already exists in the download folder (optionally also check the system version)
3) If there is an updated version we need to install, we should install that and clean up the old one