├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── example ├── index.html ├── index.js └── public │ └── README.md ├── media ├── toast.gif └── toast2.gif ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── renovate.json ├── src ├── index.ts └── style.css ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@2nthony" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 2nthony 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/README.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/example/index.js -------------------------------------------------------------------------------- /example/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/example/public/README.md -------------------------------------------------------------------------------- /media/toast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/media/toast.gif -------------------------------------------------------------------------------- /media/toast2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/media/toast2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/postcss.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/src/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2nthony/vercel-toast/HEAD/vite.config.ts --------------------------------------------------------------------------------