Class: Bridgetown::Commands::Webpack

Inherits:
Thor::Group
  • Object
show all
Extended by:
Summarizable
Includes:
Thor::Actions
Defined in:
bridgetown-core/lib/bridgetown-core/commands/webpack.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Summarizable

summary

Class Method Details



13
14
15
# File 'bridgetown-core/lib/bridgetown-core/commands/webpack.rb', line 13

def self.banner
  "bridgetown webpack ACTION"
end

.destination_rootObject



40
41
42
# File 'bridgetown-core/lib/bridgetown-core/commands/webpack.rb', line 40

def self.destination_root
  config.root_dir
end

.exit_on_failure?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'bridgetown-core/lib/bridgetown-core/commands/webpack.rb', line 18

def self.exit_on_failure?
  true
end

.source_rootObject



36
37
38
# File 'bridgetown-core/lib/bridgetown-core/commands/webpack.rb', line 36

def self.source_root
  File.expand_path("./webpack", __dir__)
end

Instance Method Details

#webpackObject



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'bridgetown-core/lib/bridgetown-core/commands/webpack.rb', line 22

def webpack
  @logger = Bridgetown.logger
  return show_actions if args.empty?

  action = args.first
  if supported_actions.include?(action)
    perform action
  else
    @logger.error "Error:".red, "🚨 Please enter a valid action."
    say "\n"
    show_actions
  end
end