├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ ├── doll-effect.spec.ts.snap │ ├── effect.spec.ts.snap │ └── reaction$.spec.ts.snap ├── doll-effect.spec.ts ├── effect.spec.ts ├── mst.spec.ts ├── reaction$.spec.ts ├── signal.spec.ts └── types.spec.ts ├── format-package.json ├── jest.config.js ├── lint-staged.config.js ├── package.json ├── src ├── const.ts ├── effect │ ├── action.ts │ ├── doll-effect.ts │ ├── effect.ts │ ├── index.ts │ └── utils.ts ├── index.ts ├── mst │ ├── index.ts │ └── types-override.ts ├── reaction$ │ └── index.ts ├── signal │ └── index.ts └── types.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/doll-effect.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/__snapshots__/doll-effect.spec.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/effect.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/__snapshots__/effect.spec.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/reaction$.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/__snapshots__/reaction$.spec.ts.snap -------------------------------------------------------------------------------- /__tests__/doll-effect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/doll-effect.spec.ts -------------------------------------------------------------------------------- /__tests__/effect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/effect.spec.ts -------------------------------------------------------------------------------- /__tests__/mst.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/mst.spec.ts -------------------------------------------------------------------------------- /__tests__/reaction$.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/reaction$.spec.ts -------------------------------------------------------------------------------- /__tests__/signal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/signal.spec.ts -------------------------------------------------------------------------------- /__tests__/types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/__tests__/types.spec.ts -------------------------------------------------------------------------------- /format-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/format-package.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/jest.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/package.json -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/const.ts -------------------------------------------------------------------------------- /src/effect/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/effect/action.ts -------------------------------------------------------------------------------- /src/effect/doll-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/effect/doll-effect.ts -------------------------------------------------------------------------------- /src/effect/effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/effect/effect.ts -------------------------------------------------------------------------------- /src/effect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/effect/index.ts -------------------------------------------------------------------------------- /src/effect/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/effect/utils.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mst/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/mst/index.ts -------------------------------------------------------------------------------- /src/mst/types-override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/mst/types-override.ts -------------------------------------------------------------------------------- /src/reaction$/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/reaction$/index.ts -------------------------------------------------------------------------------- /src/signal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/signal/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runjuu/mst-effect/HEAD/yarn.lock --------------------------------------------------------------------------------