I'm just starting out using the HTML5 Boilerplate build script with HTML5BP and I'm a bit stuck and hoping for some advice.
So far I have the following directory structure
source/
build/
public/
I've made the necessary modifications to the project.properties file to point to the right directories and when I build the project everything is ok (all the files get copied over the CSS gets minified and one of the CSS filenames are changed (and this is updated in the index.html)... BUT .. the javascript seems untouched. The /source/js/vendor folder gets copied over ok but only border-radius.htc gets copied over from the /source/js folder.
All the files are in the intermediate folder so it sees them, but for some reason it doesn't copy them over. Two of the js files are included in the index.html pages so if it is doing selective inclusion at least those two should be copied over right?
So I then added the tag around the two JS files in the index.html (which is meant to minify and concatenate them), which does generate a correct file in the /public/js folder but it does not update the reference to them in index.html.
Any idea what I am doing wrong?