jsmin.py is worlds slower than jsmin.c (I benchmarked one project at 10+s for Python and <2s for C). I think the author will want to use the latter.<p>Also, without the ability to build a dependency graph (something Closure Tools excel at), I'm not sure that this is much better than a simple shell script like:<p><pre><code> dest=/tmp/build.js
echo > $dest
for js in $(cat build.order); do
cat "$js" >> $dest
done
jsmin < $dest > out.js
</code></pre>
(The same for CSS, but using slimmer).<p>At least then you don't have to write your script order in YAML.