Skip to content

Commit

Permalink
Fix rake check:type
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Jun 14, 2024
1 parent 983b2d7 commit f3a0599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ruby_wasm/packager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def ruby_core_build
# Retrieves the specs from the Bundler definition, excluding the excluded gems.
def specs
return [] unless @definition
@specs ||= @definition.resolve.materialize(@definition.requested_dependencies)
__skip__ = @specs ||= @definition.resolve.materialize(@definition.requested_dependencies)
.reject { |spec| EXCLUDED_GEMS.include?(spec.name) }
.reject { |spec| spec.is_a?(Bundler::LazySpecification) }
@specs
Expand Down
2 changes: 1 addition & 1 deletion sig/ruby_wasm/packager.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class RubyWasm::Packager

def root: () -> string

ALL_DEFAULT_EXTS: string
ALL_DEFAULT_EXTS: String

def build_options: () -> Hash[Symbol, untyped]
def full_build_options: () -> Hash[Symbol, untyped]
Expand Down

0 comments on commit f3a0599

Please sign in to comment.