Sha256: d789165da3cb88e7db6c50cf465f9aa764f2440712d41dd7f1e10bbc42582891
Contents?: true
Size: 394 Bytes
Versions: 18
Compression:
Stored size: 394 Bytes
Contents
#!/usr/bin/env ruby require "pathname" require "bundler/setup" require "webpacker" require "webpacker/webpack_runner" ENV["RAILS_ENV"] ||= "development" ENV["NODE_ENV"] ||= ENV["RAILS_ENV"] ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath) APP_ROOT = File.expand_path("..", __dir__) Dir.chdir(APP_ROOT) do Webpacker::WebpackRunner.run(ARGV) end
Version data entries
18 entries across 18 versions & 1 rubygems