File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,10 @@ const WORKER_CODE = `
5050// Web Worker for T-Ruby WASM compilation
5151// This runs in a separate thread, isolated from browser extensions
5252
53- const RUBY_WASM_CDN = 'https://cdn.jsdelivr.net/npm/@ruby/3.3-wasm-wasi@2.7.0/dist/browser/+esm';
54- const RUBY_WASM_BINARY = 'https://cdn.jsdelivr.net/npm/@ruby/3.3-wasm-wasi@2.7.0/dist/ruby+stdlib.wasm';
53+ // Use @ruby/wasm-wasi package directly for DefaultRubyVM
54+ const RUBY_WASM_CDN = 'https://cdn.jsdelivr.net/npm/@ruby/wasm-wasi@2.7.1/dist/browser/+esm';
55+ // Use Ruby 3.4 WASM binary (more stable)
56+ const RUBY_WASM_BINARY = 'https://cdn.jsdelivr.net/npm/@ruby/3.4-wasm-wasi@2.7.1/dist/ruby+stdlib.wasm';
5557
5658const BOOTSTRAP_CODE = \`
5759require "json"
You can’t perform that action at this time.
0 commit comments