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
In the recent release, the deno.land imports where replaced with JSR imports.
Because the imports specifiers are no longer full URLS ("@std/fmt/colors") and are resolved via the adjacent importmap (i.e. deno.json),
the charmd module can no longer be imported as https://deno.land/x/charmd/mod.ts in a deno module without this exact importmap. This is a breaking change that unfortunately breaks all our projects that include charmd.
The text was updated successfully, but these errors were encountered:
Yeah, that wasn't the intention, sorry! Thanks for reporting!
I will make the fix soon.
Also, make sure to use explicit version, so at least production code does not break in the future.
But I will also try not to be a cause for such things in the future 😉
In the recent release, the deno.land imports where replaced with JSR imports.
Because the imports specifiers are no longer full URLS (
"@std/fmt/colors"
) and are resolved via the adjacent importmap (i.e. deno.json),the
charmd
module can no longer be imported as https://deno.land/x/charmd/mod.ts in a deno module without this exact importmap. This is a breaking change that unfortunately breaks all our projects that includecharmd
.The text was updated successfully, but these errors were encountered: