From 8fa725f194b129e11514c2291067576c886c3232 Mon Sep 17 00:00:00 2001 From: hellekin Date: Mon, 5 Oct 2020 14:11:43 +0200 Subject: rails new incommon-map -d postgresql -C -T --- bin/webpack | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 bin/webpack (limited to 'bin/webpack') diff --git a/bin/webpack b/bin/webpack new file mode 100755 index 0000000..1031168 --- /dev/null +++ b/bin/webpack @@ -0,0 +1,18 @@ +#!/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 -- cgit v1.2.3