zx-deno
zx-deno copied to clipboard
bump std dependencies, with `udd **/*js`
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
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>