Skip to content

Commit

Permalink
Update Uglifier gem
Browse files Browse the repository at this point in the history
  • Loading branch information
Janell-Huyck committed Dec 2, 2024
1 parent 64aed2b commit 518e913
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gem 'sass-rails', '~> 5.0'
# Use Devise for authentication
gem 'devise'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
gem 'uglifier', '~> 2.7', '>= 2.7.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
# Use CoffeeScript for .coffee assets and views
Expand Down Expand Up @@ -121,7 +121,11 @@ end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

# Required by net-ssh for supporting ssh-ed25519 keys during deployment
gem 'bcrypt_pbkdf', '~> 1.0', '>= 1.0.0'
gem 'ed25519', '~> 1.2', '>= 1.2.4'
gem 'net-ssh', '>= 6.0.0'

# Required for mutex_m since Ruby 3.4.0 will not include it by default
gem 'mutex_m'

9 changes: 6 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ GEM
mini_mime (1.1.5)
minitest (5.25.2)
msgpack (1.7.5)
mutex_m (0.3.0)
mysql2 (0.5.6)
net-imap (0.5.1)
date
Expand Down Expand Up @@ -378,8 +379,9 @@ GEM
turbolinks-source (5.2.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uglifier (4.2.1)
execjs (>= 0.3.0, < 3)
uglifier (2.7.2)
execjs (>= 0.3.0)
json (>= 1.8.0)
unicode-display_width (3.1.2)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
Expand Down Expand Up @@ -441,6 +443,7 @@ DEPENDENCIES
jbuilder (~> 2.5)
jquery-rails
listen (>= 3.0.5, < 3.2)
mutex_m
mysql2
net-pop (~> 0.1.2)
net-protocol
Expand Down Expand Up @@ -469,7 +472,7 @@ DEPENDENCIES
sqlite3 (~> 1.4)
turbolinks (~> 5)
tzinfo-data
uglifier (>= 1.3.0)
uglifier (~> 2.7, >= 2.7.2)
web-console (>= 3.3.0)

RUBY VERSION
Expand Down

0 comments on commit 518e913

Please sign in to comment.