5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-03 18:47:04 +00:00
panel/bin/webpack
f 74ec630377
agregar webpacker y actiontext
se llama webpacker y el logo no es un bulto!
2019-08-30 17:47:31 -03:00

21 lines
504 B
Ruby
Executable file

#!/usr/bin/env ruby
# frozen_string_literal: true
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 'rubygems'
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