├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── config └── setup.js ├── lib ├── __tests__ │ └── index.test.js └── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | .travis.yml 3 | .npmignore 4 | /config/ 5 | yarn.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/README.md -------------------------------------------------------------------------------- /config/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/config/setup.js -------------------------------------------------------------------------------- /lib/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/lib/__tests__/index.test.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpunion/react-actioncable-provider/HEAD/yarn.lock --------------------------------------------------------------------------------