├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ └── Bug_report.md ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── jest.config.js ├── package.json ├── src ├── XstateRedux.spec.ts ├── XstateRedux.ts ├── action.ts ├── index.spec.ts ├── index.ts ├── utils.spec.ts └── utils.ts ├── tsconfig.json └── tsconfig.release.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/package.json -------------------------------------------------------------------------------- /src/XstateRedux.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/XstateRedux.spec.ts -------------------------------------------------------------------------------- /src/XstateRedux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/XstateRedux.ts -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/utils.spec.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saqara/xstate-redux/HEAD/tsconfig.release.json --------------------------------------------------------------------------------