1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
class Webpacker::Instance
cattr_accessor(:logger) { ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT)) }
attr_reader :root_path, :config_path
def initialize(root_path: Rails.root, config_path: Rails.root.join("config/webpacker.yml"))
@root_path, @config_path = root_path, config_path
end
def env
@env ||= Webpacker::Env.inquire self
end
def config
@config ||= Webpacker::Configuration.new(
root_path: root_path,
config_path: config_path,
env: env
)
end
def compiler
@compiler ||= Webpacker::Compiler.new self
end
def dev_server
@dev_server ||= Webpacker::DevServer.new config
end
def manifest
@manifest ||= Webpacker::Manifest.new self
end
def commands
@commands ||= Webpacker::Commands.new self
end
end
|