wycats / rake-pipeline-web-filters

MIT License
116 stars 34 forks source link

Coffeescript + OrderingConcatFilter #40

Closed josemotanet closed 12 years ago

josemotanet commented 12 years ago

I'm having trouble setting the pipeline to correctly order the inputs. I've posted my problem on Stack Overflow, please take a look as all the details are there.

Let me know if you need more information, ok? Thank you.

dudleyf commented 12 years ago

I answered your SO question, but the short q&a is:

Q. Why doesn't this work?

match do
  uglify
  concat ["jquery.js"], application.js
end

A: Because the uglify filter renames jquery.js to jquery.min.js, so the concat filter fails to match.

josemotanet commented 12 years ago

Thanks for replying, Dudley, I appreciate it. I'll give it a try.