Upgrade jsbundling-rails version to support the source maps. (#43656)

This commit is contained in:
Dino Maric 2021-11-17 12:22:29 +01:00 committed by GitHub
parent d269b5a4cf
commit 1c19f50110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

@ -1,5 +1,9 @@
## Unreleased
* Upgrade `jsbundling-rails` to support the source maps.
*Dino Maric*
* Scaffolds now use date_field, time_field and datetime_field instead of
date_select, time_select and datetime_select; thus providing native date/time pickers.

@ -316,7 +316,7 @@ def javascript_gemfile_entry
if adjusted_javascript_option == "importmap"
GemfileEntry.version("importmap-rails", ">= 0.3.4", "Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]")
else
GemfileEntry.version "jsbundling-rails", "~> 0.1.0", "Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]"
GemfileEntry.version "jsbundling-rails", ">= 0.2.0", "Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]"
end
end