#!/usr/bin/env ruby ENV["RAILS_ENV"] ||= "development" ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__) # Enable the `package_json` gem to allow the use scripts defined in `package.json`. # See https://github.com/shakacode/shakapacker/issues/371 ENV["SHAKAPACKER_USE_PACKAGE_JSON_GEM"] ||= "true" require "bundler/setup" require "shakapacker" require "shakapacker/webpack_runner" APP_ROOT = File.expand_path("..", __dir__) Dir.chdir(APP_ROOT) do Shakapacker::WebpackRunner.run(ARGV) end