├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── react-magic-move.js └── react-magic-move.min.js ├── examples ├── basic │ ├── app.css │ ├── app.js │ └── index.html └── buddy-list │ ├── app.css │ ├── app.js │ └── index.html ├── modules ├── components │ └── MagicMove.js └── index.js ├── package.json ├── scripts ├── build ├── dev-examples ├── preview-release ├── release └── test └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | examples/**/*-bundle.js 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/bower.json -------------------------------------------------------------------------------- /dist/react-magic-move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/dist/react-magic-move.js -------------------------------------------------------------------------------- /dist/react-magic-move.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/dist/react-magic-move.min.js -------------------------------------------------------------------------------- /examples/basic/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/basic/app.css -------------------------------------------------------------------------------- /examples/basic/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/basic/app.js -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/buddy-list/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/buddy-list/app.css -------------------------------------------------------------------------------- /examples/buddy-list/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/buddy-list/app.js -------------------------------------------------------------------------------- /examples/buddy-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/examples/buddy-list/index.html -------------------------------------------------------------------------------- /modules/components/MagicMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/modules/components/MagicMove.js -------------------------------------------------------------------------------- /modules/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./components/MagicMove'); 2 | 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/dev-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/scripts/dev-examples -------------------------------------------------------------------------------- /scripts/preview-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/scripts/preview-release -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | scripts/build 3 | node_modules/.bin/release 4 | -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | NODE_ENV=test node_modules/.bin/karma start "$@" 3 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/react-magic-move/HEAD/webpack.config.js --------------------------------------------------------------------------------