├── .babelrc.json ├── .eslintrc.json ├── .gitignore ├── .postcssrc.json ├── .travis.yml ├── README.md ├── demo └── assets │ └── wac-video.gif ├── dist ├── index.d.ts └── index.js ├── package.json ├── src └── index.ts ├── tsconfig.json ├── webpack.config.js └── webpack.prod.js /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/.postcssrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/README.md -------------------------------------------------------------------------------- /demo/assets/wac-video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/demo/assets/wac-video.gif -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcaferati/wac/HEAD/webpack.prod.js --------------------------------------------------------------------------------