Hi guys,
Please can we freeze all work on the build scripts in the html5-boilerplate repo.
The ant repo is here:
https://github.com/h5bp/ant-build-script
All development should move to that repo. Please let me know ASAP is something isn't right.
It should contain only the commits relevant to the build script (some of the commit messages might look like they are about other things, but that's because some commits bundled in changes to non-build files). Once we're happy, we should start moving the relevant build script issues from the html5-boilerplate repo to this one.
I've just moved the rake build script:
But I noticed that the subdirectory filter seems to have removed a bunch of commits from the history. Kushal, please could you have a look at the repo and let me know if there are things missing, etc.
This is the workflow that I used to extract the build scripts:
// In the dir where you have an h5bp clone...clone it. Faster than a fresh clone from GH.
git clone --no-hardlinks /html5-boilerplate ant-build-script
cd ant-build-script
git filter-branch --prune-empty --subdirectory-filter build HEAD -- --all
git reset --hard
rm -rf .git/refs/original/
git reflog expire --expire=now --all
git gc --aggressive --prune=now
// Change the origin
git remote set-url origin g...@github.com:h5bp/ant-build-script.git
git push origin master
I don't know exactly where Mickael's node repo is or whether he has any local changes waiting to be pushed. So I'll leave it up to Mickael to push the node build script to
https://github.com/h5bp/node-build-script when he has time.
Thanks,
Nicolas