Apply a CSS class for each stage of a CSS transition.
This is basically a react-free rip-off of react-transition-group.
It is super useful to make CSS transitions from display: none;
to display: whatever;
.
There is a simple usage demo which can be run as follows:
yarn
yarn start
Certain steps need to be done in order to create a new release:
- Decide on a semver version number
- Start a new release using
git flow release start [version number]
- Update the
package.json
version - Update the
CHANGELOG.md
- Run
yarn build
to updatedist/index.js
- Commit changes:
git commit -a -m "Prepare release [version number]"
- Finish release using
git flow release finish
- Push all changes:
git push origin --all