denoland / fresh

The next-gen web framework.
https://fresh.deno.dev
MIT License
12.24k stars 626 forks source link

failed to init fresh project by JSR #2527

Closed SteveSuv closed 3 months ago

SteveSuv commented 3 months ago

when I init fresh project follow by https://github.com/denoland/fresh/tree/main/init

deno run -Ar jsr:@fresh/init

throw error

error: Could not find version of '@fresh/init' that matches specified version constraint '*'
marvinhagemeister commented 3 months ago

There is no public stable release of @fresh/init yet as Fresh 2 isn't released yet. Until we'll make the first public release for the latest tag JSR requires an explicit version:

- deno run -Ar jsr:@fresh/init
+ deno run -Ar jsr:@fresh/init@2.0.0-alpha.16

Once Fresh 2 is out, this will not be necessary anymore.