After creating a fork and cloning locally:
- Install dependencies in the root(
/
) directory with:npm install
- Install dependencies in the
/demo
directory withcd demo && npm install
- Open two terminal tabs, In the first run:
npm run watch
and in the second run:npm run develop
- Edit/Create the css files in
/src
folder in the root dir to add new classes. - Open the
/demo/src/assets/animations.js
file and add details about the newly added animation. eg:
// in /demo/src/assets/animations.js
export default [
...
{
name: 'Fade', // the title of the animation to display on the demo page
class: 'fade', // the value that will set to the name prop of the transition wrapper
}
...
]
- When working on your own fork, be sure to create a new branch and work on.
- When submitting a PR, be sure to submit to the
develop
branch. PRs tomaster
will be closed please.