You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
414 B
18 lines
414 B
#!/usr/bin/env ruby |
|
|
|
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development" |
|
ENV["NODE_ENV"] ||= "development" |
|
|
|
require "pathname" |
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", |
|
Pathname.new(__FILE__).realpath) |
|
|
|
require "bundler/setup" |
|
|
|
require "webpacker" |
|
require "webpacker/webpack_runner" |
|
|
|
APP_ROOT = File.expand_path("..", __dir__) |
|
Dir.chdir(APP_ROOT) do |
|
Webpacker::WebpackRunner.run(ARGV) |
|
end
|
|
|