pkg/dart2js_info/DEVELOPER.md
We use dartdoc and host the generated documentation as a github page in
this repo. Here is how to update it:
pub global activate dartdoc
doc:dartdoc --output _docs
gh-pages branch:git checkout gh-pages
git pull
rm -r doc/api
mv _docs doc/api
git diff # validate changes look right
git commit -a -m "Update documentation ... "
git push origin gh-pages