├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── DEV_ONLY ├── App.js ├── Counter.js ├── Number.js └── index.js ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── connectLocal.js ├── constants.js ├── helperMethods.js ├── index.js └── utils.js ├── test ├── connectLocal.js ├── helperMethods.js ├── helpers │ └── setup-browser-env.js └── utils.js ├── webpack ├── webpack.config.dev.js ├── webpack.config.js └── webpack.config.minified.js ├── yarn-error.log └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .nyc_output 3 | coverage 4 | dist 5 | es 6 | node_modules 7 | lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/.prettierrc -------------------------------------------------------------------------------- /DEV_ONLY/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/DEV_ONLY/App.js -------------------------------------------------------------------------------- /DEV_ONLY/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/DEV_ONLY/Counter.js -------------------------------------------------------------------------------- /DEV_ONLY/Number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/DEV_ONLY/Number.js -------------------------------------------------------------------------------- /DEV_ONLY/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/DEV_ONLY/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/connectLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/src/connectLocal.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/helperMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/src/helperMethods.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/connectLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/test/connectLocal.js -------------------------------------------------------------------------------- /test/helperMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/test/helperMethods.js -------------------------------------------------------------------------------- /test/helpers/setup-browser-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/test/helpers/setup-browser-env.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/test/utils.js -------------------------------------------------------------------------------- /webpack/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/webpack/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/webpack/webpack.config.js -------------------------------------------------------------------------------- /webpack/webpack.config.minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/webpack/webpack.config.minified.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/react-local-redux/HEAD/yarn.lock --------------------------------------------------------------------------------