Is there a tool that will do the following during deployment?
- Find all javascript files specified in the
<script> tags of the html document. - Minimize javascript files to 1 file.
- Replace the
<script> tags in the html file with only one pointing to the mini file.
I cannot be the only one who wants to do this, so before writing the tool itself, is there already a utility that does this?
I am using Go on Google App Engine.
source share