Class: Webpacker::Instance

Inherits:
Object
  • Object
show all
Defined in:
lib/webpacker/instance.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(root_path: Jets.root, config_path: Jets.root.join("config/webpacker.yml")) ⇒ Instance

Returns a new instance of Instance.



6
7
8
# File 'lib/webpacker/instance.rb', line 6

def initialize(root_path: Jets.root, config_path: Jets.root.join("config/webpacker.yml"))
  @root_path, @config_path = root_path, config_path
end

Instance Attribute Details

#config_pathObject (readonly)

Returns the value of attribute config_path.



4
5
6
# File 'lib/webpacker/instance.rb', line 4

def config_path
  @config_path
end

#root_pathObject (readonly)

Returns the value of attribute root_path.



4
5
6
# File 'lib/webpacker/instance.rb', line 4

def root_path
  @root_path
end

Instance Method Details

#commandsObject



32
33
34
# File 'lib/webpacker/instance.rb', line 32

def commands
  @commands ||= Webpacker::Commands.new self
end

#compilerObject



20
21
22
# File 'lib/webpacker/instance.rb', line 20

def compiler
  @compiler ||= Webpacker::Compiler.new self
end

#configObject



16
17
18
# File 'lib/webpacker/instance.rb', line 16

def config
  @config ||= Webpacker::Configuration.new self
end

#dev_serverObject



24
25
26
# File 'lib/webpacker/instance.rb', line 24

def dev_server
  @dev_server ||= Webpacker::DevServer.new self
end

#envObject



10
11
12
13
14
# File 'lib/webpacker/instance.rb', line 10

def env
  (ENV["NODE_ENV"].presence_in(available_environments) ||
    Jets.env.presence_in(available_environments) ||
      "production".freeze).inquiry
end

#manifestObject



28
29
30
# File 'lib/webpacker/instance.rb', line 28

def manifest
  @manifest ||= Webpacker::Manifest.new self
end