I have a Rails 8 app w/ the stimulus-rails and importmap-rails gems installed.
When I install any third-party package that uses stimulus, my config/importmap.rb gets updated to the publilcly available latest version, not the version I previously pinned w/ the gem. Example:
$ bin/importmap pin stimulus-autocomplete
Gives me this diff:
-pin "@hotwired/stimulus", to: "stimulus.min.js"
+pin "@hotwired/stimulus", to: "@hotwired--stimulus.js" # @3.2.2
Would this be better filed as an importmap-rails bug?
I have a Rails 8 app w/ the
stimulus-railsandimportmap-railsgems installed.When I install any third-party package that uses stimulus, my
config/importmap.rbgets updated to the publilcly available latest version, not the version I previously pinned w/ the gem. Example:Gives me this diff:
Would this be better filed as an
importmap-railsbug?