Skip to content

Commit 1c5a086

Browse files
authored
Update dependencies (#1682)
1 parent 6b51b70 commit 1c5a086

File tree

7 files changed

+136
-130
lines changed

7 files changed

+136
-130
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gem 'concurrent-ruby', '< 1.3.5' # rails/rails#54260
1010
gem 'newrelic_rpm', '~> 9.21'
1111
gem 'pg', '~> 1.4.6'
1212
gem 'puma', '~> 7.0'
13-
gem 'shakapacker', '9.1.0'
13+
gem 'shakapacker', '9.2.0'
1414
gem 'slim-rails', '~> 3.7'
1515
gem 'turbo-rails', '~> 2.0'
1616

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ GEM
6464
public_suffix (>= 2.0.2, < 7.0)
6565
ast (2.4.3)
6666
base64 (0.3.0)
67-
bigdecimal (3.3.0)
67+
bigdecimal (3.3.1)
6868
bindex (0.8.1)
6969
bootsnap (1.18.6)
7070
msgpack (~> 1.2)
@@ -158,7 +158,7 @@ GEM
158158
ast (~> 2.4.1)
159159
racc
160160
pg (1.4.6)
161-
prism (1.5.1)
161+
prism (1.5.2)
162162
pry (0.15.2)
163163
coderay (~> 1.1)
164164
method_source (~> 1.0)
@@ -275,7 +275,7 @@ GEM
275275
rubyzip (>= 1.2.2, < 3.0)
276276
websocket (~> 1.0)
277277
semantic_range (3.1.0)
278-
shakapacker (9.1.0)
278+
shakapacker (9.2.0)
279279
activesupport (>= 5.2)
280280
package_json
281281
rack-proxy (>= 0.6.1)
@@ -375,7 +375,7 @@ DEPENDENCIES
375375
rubocop-rspec
376376
rubocop-rspec_rails
377377
selenium-webdriver
378-
shakapacker (= 9.1.0)
378+
shakapacker (= 9.2.0)
379379
shoulda-matchers
380380
simplecov
381381
simplecov-lcov

bin/export-bundler-config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env node
2+
3+
// Minimal shim - all logic is in the TypeScript module
4+
const { run } = require('shakapacker/configExporter')
5+
6+
run(process.argv.slice(2))
7+
.then((exitCode) => process.exit(exitCode))
8+
.catch((error) => {
9+
console.error(error.message)
10+
process.exit(1)
11+
})

bin/shakapacker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

33
ENV["RAILS_ENV"] ||= "development"
4-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
4+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
55
ENV["APP_ROOT"] ||= File.expand_path("..", __dir__)
66

77
require "bundler/setup"

bin/shakapacker-dev-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

33
ENV["RAILS_ENV"] ||= "development"
4-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
4+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
55

66
require "bundler/setup"
77
require "shakapacker"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"resolve-url-loader": "^5.0.0",
3737
"sass": "1.77.6",
3838
"sass-loader": "^16.0.5",
39-
"shakapacker": "9.1.0",
39+
"shakapacker": "9.2.0",
4040
"style-loader": "^4.0.0",
4141
"terser-webpack-plugin": "^5.3.14",
4242
"webpack": "^5.102.1",

yarn.lock

Lines changed: 117 additions & 122 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)