Files
yoga/dist
Christopher Chedeau e280a577ae Fix width being ignored when has a value of 0
8f6a96adbc added a test in isDimDefined that checks if `value > 0.0`, but unfortunately, it did not faithfully port the JavaScript version which is `value >= 0.0`. Sadly, no test covered this so it went unnoticed.
2015-09-25 13:10:21 -07:00
..
2015-08-21 11:04:46 +01:00

Releases can be found on npm.

#Release Process

# Ensure that the local codebase is up to date
git fetch upstream master && git checkout FETCH_HEAD

# increment the version number and tag the release
npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease]

# push the the commit and tag back to upstream
git push --tags upstream HEAD:master

# publish this new version to npm
npm publish