Skip to content
mikechambers edited this page Feb 8, 2011 · 4 revisions

Building the source

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.

Tagging the Release

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

http://book.git-scm.com/3_git_tag.html

Clone this wiki locally