zx-deno icon indicating copy to clipboard operation
zx-deno copied to clipboard

bump std dependencies, with `udd **/*js`

Open alsuren opened this issue 3 years ago • 1 comments

I'm currently running

$ deno --version
deno 1.13.2 (release, x86_64-apple-darwin)
v8 9.3.345.11
typescript 4.3.5

and this complains about some typing problems in [email protected]

I ran udd **/*js to bump the versions

I can now run deno install -A --unstable mod.mjs without any problems.

  • [ ] Tests pass I'm not sure how to run the tests

  • [ ] Appropriate changes to README are included in PR I don't think any are needed

alsuren avatar Sep 09 '21 11:09 alsuren

same error here deno 1.14

A workaround while this is merged: use an import_map

{
   "imports": {
      "https://deno.land/[email protected]/": "https://deno.land/[email protected]/"
   }
}
deno run --import-map=import_map.json <script>

romainPrignon avatar Oct 10 '21 18:10 romainPrignon