├── .all-contributorsrc ├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── correlate │ ├── correlate-action.ts │ ├── correlate-effect.ts │ └── index.ts ├── index.ts ├── mutable-on │ └── index.ts └── mutable-reducer │ └── index.ts ├── tests ├── correlate │ ├── correlate-action.spec.ts │ └── correlate-effect.spec.ts ├── mutable-on │ └── mutable-on.spec.ts └── mutable-reducer │ └── mutable-reducer.spec.ts ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/package.json -------------------------------------------------------------------------------- /src/correlate/correlate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/correlate/correlate-action.ts -------------------------------------------------------------------------------- /src/correlate/correlate-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/correlate/correlate-effect.ts -------------------------------------------------------------------------------- /src/correlate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/correlate/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mutable-on/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/mutable-on/index.ts -------------------------------------------------------------------------------- /src/mutable-reducer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/src/mutable-reducer/index.ts -------------------------------------------------------------------------------- /tests/correlate/correlate-action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tests/correlate/correlate-action.spec.ts -------------------------------------------------------------------------------- /tests/correlate/correlate-effect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tests/correlate/correlate-effect.spec.ts -------------------------------------------------------------------------------- /tests/mutable-on/mutable-on.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tests/mutable-on/mutable-on.spec.ts -------------------------------------------------------------------------------- /tests/mutable-reducer/mutable-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tests/mutable-reducer/mutable-reducer.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdeschryver/ngrx-etc/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------