Specifying config remotely or jsx on install
I'm struggling quite a lot here. I originally recommended using this command:
but it turns out deno doesn't support loading a remote config? That seems strange to me but sure. To work around this, I'm trying to do:
but it gives the following error:
I know that philosophically, Deno in the past claimed that you could always pass in command line flags instead of a config file. Any ideas on what to do here?
2 Replies
I ran into similar issues myself yesterday:
https://github.com/denoland/deno/issues/15350
GitHub
deno install with import_map.json appears to be broken · Issue #153...
I have made this third party module https://deno.land/x/wallpal. It is a cli script, so I attempted to install it with deno install -A --import-map=https://deno.land/x/wallpal@1.0.0/import_map.json...
the short version is,
deno install --import-map
is broken. And if your application (or any of its libraries) uses an import map, you can no longer deno install
it. 😢