├── .codecov.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.ts ├── package.json ├── src ├── index.ts ├── tsconfig.cjs.json ├── tsconfig.json ├── use-listen-for.ts └── use-replicant.ts ├── tests ├── tsconfig.json └── use-replicant.spec.tsx └── tsconfig.json /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/src/tsconfig.cjs.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/use-listen-for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/src/use-listen-for.ts -------------------------------------------------------------------------------- /src/use-replicant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/src/use-replicant.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/use-replicant.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/tests/use-replicant.spec.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodecg/react-hooks/HEAD/tsconfig.json --------------------------------------------------------------------------------