├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── test ├── preact.test.tsx ├── setup.ts └── tsconfig.json ├── tsconfig.json ├── vite.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/preact.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/test/preact.test.tsx -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melnikov-s/preact-observables/HEAD/yarn.lock --------------------------------------------------------------------------------