├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── actions.js ├── index.js ├── local.js ├── localReducer.js └── utils.js └── tests ├── helpers ├── configureStore.js ├── sagas.js └── setupEnv.js ├── localReducerSpec.js ├── localSpec.js └── utilsSpec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | npm-debug.log 4 | coverage 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # dev-oly folders 2 | tests 3 | npm-debug.log 4 | coverage 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/src/index.js -------------------------------------------------------------------------------- /src/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/src/local.js -------------------------------------------------------------------------------- /src/localReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/src/localReducer.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/helpers/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/helpers/configureStore.js -------------------------------------------------------------------------------- /tests/helpers/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/helpers/sagas.js -------------------------------------------------------------------------------- /tests/helpers/setupEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/helpers/setupEnv.js -------------------------------------------------------------------------------- /tests/localReducerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/localReducerSpec.js -------------------------------------------------------------------------------- /tests/localSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/localSpec.js -------------------------------------------------------------------------------- /tests/utilsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcazaciuc/redux-fractal/HEAD/tests/utilsSpec.js --------------------------------------------------------------------------------