hash-wasm icon indicating copy to clipboard operation
hash-wasm copied to clipboard

Please release Deno versions

Open yuhr opened this issue 2 years ago • 1 comments

https://deno.land/x/[email protected]

The Deno version of this package is still 4.1.0. Could you release it along with the timing of npm releases?

yuhr avatar Oct 10 '21 00:10 yuhr

Yeah, I need to repair the build script which I had for Deno.

Until then you can import the latest version using ESM CDNs like Skypack.

import { md5 } from "https://cdn.skypack.dev/hash-wasm@4";

OR

import { md5 } from "https://esm.run/hash-wasm@4";

Daninet avatar Oct 10 '21 15:10 Daninet

Now it should be possible to import it directly: import {md5} from "npm:hash-wasm";

Daninet avatar Nov 26 '22 10:11 Daninet