├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── saga-runner.md ├── testing.md └── utilities.md ├── lib ├── index.ts ├── interfaces.ts ├── middleware.ts ├── runner.ts ├── scheduler.ts ├── testing.ts └── util.ts ├── package.json ├── spec ├── index.spec.ts ├── support │ └── jasmine.json ├── test_harness.ts ├── tsconfig.json └── util.spec.ts ├── tsconfig.json └── typings.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/README.md -------------------------------------------------------------------------------- /docs/saga-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/docs/saga-runner.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/docs/utilities.md -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/interfaces.ts -------------------------------------------------------------------------------- /lib/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/middleware.ts -------------------------------------------------------------------------------- /lib/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/runner.ts -------------------------------------------------------------------------------- /lib/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/scheduler.ts -------------------------------------------------------------------------------- /lib/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/testing.ts -------------------------------------------------------------------------------- /lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/lib/util.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/package.json -------------------------------------------------------------------------------- /spec/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/spec/index.spec.ts -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /spec/test_harness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/spec/test_harness.ts -------------------------------------------------------------------------------- /spec/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/spec/tsconfig.json -------------------------------------------------------------------------------- /spec/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/spec/util.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSequence/store-saga/HEAD/typings.json --------------------------------------------------------------------------------