mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
320 B
14 lines
320 B
#!/usr/bin/env ruby
|
|
|
|
ENV["RAILS_ENV"] ||= "development"
|
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
|
|
|
|
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
|