Sha256: ed66cb96aeb2ef643f0d09ab5bb22c0a90e2f10d191d4aaaf1766cf11586c070
Contents?: true
Size: 657 Bytes
Versions: 2
Compression:
Stored size: 657 Bytes
Contents
module Webpacker class Runner def self.run(argv) $stdout.sync = true new(argv).run end def initialize(argv) @argv = argv @app_path = File.expand_path(".", Dir.pwd) @node_modules_path = File.join(@app_path, "node_modules") @webpack_config = File.join(@app_path, "config/webpack/#{ENV["NODE_ENV"]}.js") unless File.exist?(@webpack_config) $stderr.puts "webpack config #{@webpack_config} not found, please run 'jets webpacker:install' to install Webpacker with default configs or add the missing config file for your custom environment." exit! end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
webpacker-jets-3.2.101 | lib/webpacker/runner.rb |
webpacker-jets-3.2.100 | lib/webpacker/runner.rb |