mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
11 lines
265 B
Ruby
11 lines
265 B
Ruby
require 'rubygems'
|
|
require 'closure-compiler'
|
|
|
|
desc "Use the Closure Compiler to compress Underscore.js"
|
|
task :build do
|
|
js = File.open('underscore.js', 'r')
|
|
min = Closure::Compiler.new.compile(js)
|
|
File.open('underscore-min.js', 'w') {|f| f.write(min) }
|
|
end
|
|
|