rambda
rambda copied to clipboard
[BUG] the deno instructions don't work
Describe the bug
I was trying to test Rambda in a deno app to see if I want to replace Ramda with it, but the deno.land download is not working. In a script I tried importing it like the documentation indicates:
import * as R from "https://deno.land/x/rambda/mod.ts";
but trying to run the script I get this error:
Warning Implicitly using latest version (v9.2.0) for https://deno.land/x/rambda/mod.ts
error: Module not found "https://deno.land/x/[email protected]/src/prop".
at https://deno.land/x/[email protected]/src/hasIn.js:1:24
Context(which version of library)
This happened also when trying to import v9.2.0 and v9.1.1 explicitly
Thanks for filling this bug; I will look into it and get back to you.
Found the issue. I am making release soon, so let's see if it works.
Finally, the issue is fixed with https://deno.land/x/[email protected]
Now, this import * as R from 'https://deno.land/x/[email protected]/mod.ts' works