-
Notifications
You must be signed in to change notification settings - Fork 2k
Build
mikechambers edited this page Feb 8, 2011
·
4 revisions
Currently, in order to build the minified easel.js file, we use the Google Closure compiler wrapped in a custom bash file. The build.bash file is in the build/ directory, and should be run from within that directory.
./build.bash path-google-closure-jar
So, for example:
./build.bash ~/bin/compiler.jar
This will place the minified file in the build/output/ directory.
Note, we want to change this to a more formal build tool, such as ANT.
When a release is ready to tag, use the following git command:
git tag -a release_v0.3.0
git push --tags
There is a good reference on tagging at