Skip to content

Commit b508b9b

Browse files
committed
Be explicit about the solidus_frontend gemspec dependency
We need to avoid being too strict on the frontend dependency because otherwise we need to release a new solidus_frontend .dev version everytime we release a new solidus 3.3.x patch level version. With this change, whenever the solidus main gem is used, Bundler will compute the frontend dependency less strictly and will pick the last version released on RubyGems. We can remove the .alpha part when 3.3.0 will be released.
1 parent cc37037 commit b508b9b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

solidus.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
2424
s.add_dependency 'solidus_api', s.version
2525
s.add_dependency 'solidus_backend', s.version
2626
s.add_dependency 'solidus_core', s.version
27-
s.add_dependency 'solidus_frontend', s.version
2827
s.add_dependency 'solidus_sample', s.version
28+
29+
s.add_dependency 'solidus_frontend', '~> 3.3.0.alpha'
2930
end

0 commit comments

Comments
 (0)