mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 22:51:41 +00:00
21 lines
504 B
Text
21 lines
504 B
Text
|
#!/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
|