├── .github ├── actions │ └── install │ │ └── action.yml ├── hooks │ └── pre-commit └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── index.html ├── lint-staged.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── app.tsx ├── button.css ├── button.tsx ├── irrelevant │ ├── index.css │ └── index.tsx └── main.tsx ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/.github/actions/install/action.yml -------------------------------------------------------------------------------- /.github/hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pnpm lint-staged -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/.nvmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/index.html -------------------------------------------------------------------------------- /lint-staged.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/lint-staged.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/button.css -------------------------------------------------------------------------------- /src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/button.tsx -------------------------------------------------------------------------------- /src/irrelevant/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/irrelevant/index.css -------------------------------------------------------------------------------- /src/irrelevant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/irrelevant/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/src/main.tsx -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joe-bell/loading-disco/HEAD/vite.config.ts --------------------------------------------------------------------------------