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
@nathanwhit It seems that now deno install fails with:
rm -rf ~/.cache/deno && ~/repos/deno/target/debug/deno install
error: Expected a JavaScript or TypeScript module, but identified a Json module. Consider importing Json modules with an import attribute with the type of "json".
Specifier: https://jsr.io/@std/html/1.0.3/named_entity_list.json
I am not importing the file directly in my code, so i assume this is something breaking on the install process, where it does not properly handle json exports?
Fixes#26509.
Ended up being a `deno_graph` bug causing the error to surface. This PR
updates `deno_graph` to pick up the fix and reverts the temporary
workaround that skipped JSON exports.
Fixes#26509.
Ended up being a `deno_graph` bug causing the error to surface. This PR
updates `deno_graph` to pick up the fix and reverts the temporary
workaround that skipped JSON exports.
I am not importing the file directly in my code, so i assume this is something breaking on the install process, where it does not properly handle json exports?
Originally posted by @M4RC3L05 in #26180 (comment)
The text was updated successfully, but these errors were encountered: