├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json └── src ├── actions.js ├── index.js ├── reducer.js ├── test └── index.tap.js └── types.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/src/reducer.js -------------------------------------------------------------------------------- /src/test/index.tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/src/test/index.tap.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Willyham/redux-map-gl/HEAD/src/types.js --------------------------------------------------------------------------------