Search code examples
javascriptanthtml5boilerplate

HTML5 Boilerplate build scripts doesn't replace script tags in index.html


I am just getting started with the HTML5 boilerplate build script and I am having some problems. Basically all my scripts are minified and compressed as I would hope, but all of the original <script> tags are left in the output index.html. What I need is for it to replace these tags with a reference to the minified js file. I thought this should happen by default. Maybe I am doing something wrong?


Solution

  • I ended up rolling my own build script with rake and the javascript closure compiler. It was pretty easy actually.