Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Namely i want to do this kind of stuff: #{script 'tests/*.js'/}. Do i have to write custom tag or there are some workarounds?

share|improve this question

1 Answer

up vote 2 down vote accepted

For Play 2.0 all scripts included in public/assets will be parsed by Google Closure.

For Play 1.2.X, you should use local build scripts such as the one included in HTML5Boilerplate. A quick ant task, compresses, minifies and will join diffents scripts together. You could simply include the result file.

share|improve this answer
1  
+1 good answer. Nice to see Play 2.0 starting to show itself in answers to question. Be cautious though, Play2.0 is liable to change heavily before it gets to alpha/beta phase. – Codemwnci Nov 4 '11 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.