Skip to content

Instantly share code, notes, and snippets.

@pobing
Created September 21, 2018 07:05
Show Gist options
  • Save pobing/41151285d586e4ea6fa0c9f992daa38f to your computer and use it in GitHub Desktop.
Save pobing/41151285d586e4ea6fa0c9f992daa38f to your computer and use it in GitHub Desktop.
desc "update zone data"
task :find_bad_js => :environment do
JS_PATH = "/lit/app/assets/javascripts/**/*.js";
Dir[JS_PATH].each do |file_name|
puts "\n#{file_name}"
puts Uglifier.compile(File.read(file_name))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment