lumeland / lume

🔥 Static site generator for Deno 🦕
https://lume.land
MIT License
1.88k stars 86 forks source link

Weird deno version requirement #658

Closed iacore closed 1 month ago

iacore commented 1 month ago

Why Lume has Deno version requirement now? It wasn't the case before.

What steps will reproduce the bug?

❯ deno run -A https://lume.land/init.ts

Lume needs Deno v1.46.0 or greater
Your current Deno version is 1.45.5
Run deno upgrade and try again
oscarotero commented 1 month ago

It always had version requirement but it was far below the latest version. With Lume 2.3 I had to update to the latest Deno version due this bug https://github.com/denoland/deno/issues/25008 that was fixed recently.

If you don't want to upgrade Deno, you can run old versions of the init script here: https://deno.land/x/lume_init

iacore commented 1 month ago

If you don't want to upgrade Deno, you can run old versions of the init script here: https://deno.land/x/lume_init

Got it.

Lume going multi-threaded?

oscarotero commented 1 month ago

Lume going multi-threaded?

Not exactly. The build process is run in a worker, so it can be reload after changing the _config.ts file. More info.

iacore commented 1 month ago

You have solved the reloading problem. Nice!