Closed ppcano closed 12 years ago
I use the filter shown below to fix the problems, copied from the following gist
class FixUglifyFilter < Rake::Pipeline::Filter def generate_output(inputs, output) inputs.each do |input| output.write input.read + ";" end end end
This was reported in issue #12. It's a bug in the uglifier gem that was fixed in the latest release.
I use the filter shown below to fix the problems, copied from the following gist