Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 27 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ GEM
ansi (1.5.0)
ast (2.4.2)
base64 (0.2.0)
benchmark-ips (2.12.0)
benchmark-ips (2.14.0)
bigdecimal (3.1.9)
builder (3.3.0)
byebug (11.1.3)
Expand All @@ -109,7 +109,7 @@ GEM
connection_pool (2.4.1)
crass (1.0.6)
date (3.3.3)
docile (1.4.0)
docile (1.4.1)
drb (2.2.1)
dry-cli (1.2.0)
erubi (1.13.1)
Expand All @@ -121,7 +121,7 @@ GEM
irb (1.14.3)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
json (2.7.6)
json (2.9.1)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
logger (1.6.4)
Expand Down Expand Up @@ -217,51 +217,55 @@ GEM
rake (13.2.1)
rdoc (6.10.0)
psych (>= 4.0.0)
regexp_parser (2.9.2)
regexp_parser (2.10.0)
reline (0.6.0)
io-console (~> 0.5)
rubocop (1.66.1)
rubocop (1.70.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.32.2, < 2.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.36.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.34.0)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.37.0)
parser (>= 3.3.1.0)
rubocop-minitest (0.27.0)
rubocop (>= 0.90, < 2.0)
rubocop-performance (1.22.1)
rubocop-minitest (0.36.0)
rubocop (>= 1.61, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-performance (1.23.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
simplecov (0.17.1)
simplecov (0.22.0)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.13.1)
simplecov_json_formatter (0.1.4)
spring (2.1.1)
standard (1.41.1)
standard (1.44.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.66.0)
rubocop (~> 1.70.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.5)
standard-performance (~> 1.6)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.5.0)
standard-performance (1.6.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.22.0)
rubocop-performance (~> 1.23.0)
stringio (3.1.2)
thor (1.3.2)
timeout (0.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)
unicode-display_width (3.1.4)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -282,7 +286,7 @@ DEPENDENCIES
rubocop
rubocop-minitest
rubocop-performance
simplecov (< 0.18)
simplecov (< 0.23)
spring (~> 2.1)
standard
vite_plugin_legacy!
Expand Down
1 change: 1 addition & 0 deletions test/manifest_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ def test_lookup_success

def assert_raises_manifest_missing_entry_error(auto_build: false, &block)
error = nil

ViteRuby.config.stub :auto_build, auto_build do
error = assert_raises(ViteRuby::MissingEntrypointError, &block)
end
Expand Down
2 changes: 1 addition & 1 deletion vite_ruby/vite_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "minitest-stub_any_instance", "~> 1.0"
s.add_development_dependency "pry-byebug", "~> 3.9"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "simplecov", "< 0.18"
s.add_development_dependency "simplecov", "< 0.23"

s.files = Dir.glob("{lib,exe,templates}/**/*") + %w[default.vite.json README.md CHANGELOG.md LICENSE.txt]
s.bindir = "exe"
Expand Down
Loading