├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── README.md ├── babel.config.cjs ├── package.json ├── renovate.json ├── rollup.config.js ├── src ├── createUseTransition.spec.tsx ├── createUseTransition.ts └── main.ts ├── tsconfig.build-cjs.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/renovate.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/createUseTransition.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/src/createUseTransition.spec.tsx -------------------------------------------------------------------------------- /src/createUseTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/src/createUseTransition.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | export * from "./createUseTransition"; 2 | -------------------------------------------------------------------------------- /tsconfig.build-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/tsconfig.build-cjs.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n1ru4l/react-use-transition/HEAD/yarn.lock --------------------------------------------------------------------------------