├── .env.demo ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── deploy.sh ├── index.html ├── lib └── xstate.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── app.tsx ├── main.tsx ├── styles.css └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.env.demo: -------------------------------------------------------------------------------- 1 | NODE_ENV=develop 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/deploy.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/index.html -------------------------------------------------------------------------------- /lib/xstate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/lib/xstate.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biowaffeln/zustand-middleware-xstate/HEAD/vite.config.ts --------------------------------------------------------------------------------