Mercurial > zeropaste
annotate bin/webpack @ 468:802dcd44188e
Now with webpacker
author | nanaya <me@nanaya.pro> |
---|---|
date | Sun, 23 Feb 2020 20:23:09 +0900 |
parents | |
children |
rev | line source |
---|---|
468 | 1 #!/usr/bin/env ruby |
2 | |
3 ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development" | |
4 ENV["NODE_ENV"] ||= "development" | |
5 | |
6 require "pathname" | |
7 ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", | |
8 Pathname.new(__FILE__).realpath) | |
9 | |
10 require "bundler/setup" | |
11 | |
12 require "webpacker" | |
13 require "webpacker/webpack_runner" | |
14 | |
15 APP_ROOT = File.expand_path("..", __dir__) | |
16 Dir.chdir(APP_ROOT) do | |
17 Webpacker::WebpackRunner.run(ARGV) | |
18 end |