We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4969bc6 commit 01a80b8Copy full SHA for 01a80b8
packages/npm-packages/ruby-wasm-wasi/src/browser.script.ts
@@ -2,7 +2,7 @@ import { DefaultRubyVM } from "./browser";
2
3
export const main = async (pkg: { name: string, version: string }) => {
4
const response = await fetch(
5
- `https://cdn.jsdelivr.net/npm/${pkg.name}@${pkg.version}/dist/ruby.wasm`
+ `https://cdn.jsdelivr.net/npm/${pkg.name}@${pkg.version}/dist/ruby+stdlib.wasm`
6
);
7
const buffer = await response.arrayBuffer();
8
const module = await WebAssembly.compile(buffer);
0 commit comments