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 fac40c1 commit 983b2d7Copy full SHA for 983b2d7
lib/ruby_wasm/cli.rb
@@ -216,7 +216,9 @@ def compute_build_source(options)
216
local_source = { type: "local", path: src_name }
217
# @type var local_source: RubyWasm::Packager::build_source
218
local_source = local_source.merge(name: "local", patches: [])
219
- return [local_source, nil]
+ # FIXME: We should have a way to specify extensions to be included by users.
220
+ # For now, assume all default extensions available in the head revision are available.
221
+ return [local_source, RubyWasm::Packager::ALL_DEFAULT_EXTS]
222
end
223
# Otherwise, it's an unknown source.
224
raise(
0 commit comments