Sha256: c26f8831478adac852bf18bf7d92105e08279cd61c0fe3a1e300fb406c80e17c
Contents?: true
Size: 400 Bytes
Versions: 16
Compression:
Stored size: 400 Bytes
Contents
namespace :webpacker do desc "Verifies that bin/webpack is present" task :check_binstubs do unless File.exist?(Rails.root.join("bin/webpack")) $stderr.puts "webpack binstub not found.\n"\ "Have you run rails webpacker:install ?\n"\ "Make sure the bin directory and bin/webpack are not included in .gitignore\n"\ "Exiting!" exit! end end end
Version data entries
16 entries across 16 versions & 1 rubygems