├── .gitignore
├── .babelrc
├── index.js
├── test
├── __snapshots__
│ └── AnimakitRotator.test.js.snap
├── AnimakitRotator.test.js
└── setup.js
├── CHANGELOG.md
├── LICENSE
├── lib
├── styles.es6
├── utils.es6
└── AnimakitRotator.es6
├── README.md
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | /lib/*.js
3 | /node_modules
4 | npm-debug.log
5 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "react",
4 | "es2015",
5 | "stage-3"
6 | ],
7 | "plugins": [
8 | "add-module-exports"
9 | ]
10 | }
11 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | var AnimakitRotator = require('./lib/AnimakitRotator');
2 |
3 | AnimakitRotator.displayName = 'AnimakitRotator';
4 |
5 | module.exports = AnimakitRotator;
6 |
--------------------------------------------------------------------------------
/test/__snapshots__/AnimakitRotator.test.js.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`