Sha256: 8b1a092d5dc91f5143b8a9aef5be3724c37b6e5d14af27a674839ad2a2116399

Contents?: true

Size: 565 Bytes

Versions: 1

Compression:

Stored size: 565 Bytes

Contents

tasks = {
  "webpacker_helpers:clobber" => "Remove the webpack compiled output directory as defined in config/webpack/paths.yml",
  "webpacker_helpers:check_node"      => "Verifies if Node.js is installed",
  "webpacker_helpers:check_yarn"      => "Verifies if yarn is installed",
  "webpacker_helpers:verify_install"  => "Verifies if webpacker is installed"
}.freeze

desc "Lists all available tasks in webpacker_helpers"
task :webpacker_helpers do
  puts "Available webpacker_helpers tasks are:"
  tasks.each { |task, message| puts task.ljust(30) + message }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webpacker_helpers-3.0.0.beta.1 lib/tasks/webpacker.rake