├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── actions.spec.ts ├── index.spec.ts ├── selectors.spec.ts ├── superReducer.spec.ts └── utils.spec.ts ├── package.json ├── redux_cornell_logo.png ├── src ├── actions.ts ├── constants.ts ├── index.ts ├── selectors.ts ├── superReducer.ts ├── types.ts └── utils.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.9.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/__tests__/index.spec.ts -------------------------------------------------------------------------------- /__tests__/selectors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/__tests__/selectors.spec.ts -------------------------------------------------------------------------------- /__tests__/superReducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/__tests__/superReducer.spec.ts -------------------------------------------------------------------------------- /__tests__/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/__tests__/utils.spec.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/package.json -------------------------------------------------------------------------------- /redux_cornell_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/redux_cornell_logo.png -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/selectors.ts -------------------------------------------------------------------------------- /src/superReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/superReducer.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/redux-cornell/HEAD/tslint.json --------------------------------------------------------------------------------