rambda icon indicating copy to clipboard operation
rambda copied to clipboard

[BUG] the deno instructions don't work

Open freefrancisco opened this issue 1 year ago • 2 comments

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

freefrancisco avatar May 17 '24 12:05 freefrancisco

Thanks for filling this bug; I will look into it and get back to you.

selfrefactor avatar May 20 '24 17:05 selfrefactor

Found the issue. I am making release soon, so let's see if it works.

selfrefactor avatar May 28 '24 18:05 selfrefactor

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

selfrefactor avatar Nov 05 '24 19:11 selfrefactor