├── .coveralls.yml ├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── LICENSE ├── README.md ├── index.d.ts ├── jest.config.js ├── package.json ├── src ├── EntityLifecycle.ts ├── __tests__ │ ├── actions.spec.ts │ ├── reducer.spec.ts │ └── thunk.spec.ts ├── actions.ts ├── index.ts ├── reducer.ts ├── thunk.ts ├── types.ts └── util │ ├── __tests__ │ └── validator.spec.ts │ └── validator.ts └── tsconfig.json /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/package.json -------------------------------------------------------------------------------- /src/EntityLifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/EntityLifecycle.ts -------------------------------------------------------------------------------- /src/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /src/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /src/__tests__/thunk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/__tests__/thunk.spec.ts -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/reducer.ts -------------------------------------------------------------------------------- /src/thunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/thunk.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util/__tests__/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/util/__tests__/validator.spec.ts -------------------------------------------------------------------------------- /src/util/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/src/util/validator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikechabot/redux-entity/HEAD/tsconfig.json --------------------------------------------------------------------------------