class Webpacker::Commands
def bootstrap
def bootstrap manifest.refresh end
def clobber
def clobber config.public_output_path.rmtree if config.public_output_path.exist? config.cache_path.rmtree if config.cache_path.exist? end
def compile
def compile compiler.compile.tap do |success| manifest.refresh if success end end
def initialize(webpacker)
def initialize(webpacker) @webpacker = webpacker end