├── .gitattributes ├── .gitignore ├── .prettierignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── src ├── defaultTheme.ts └── index.ts ├── tests ├── index.test.ts ├── matchers.ts └── run.ts ├── tsconfig.build.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/defaultTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/src/defaultTheme.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/tests/matchers.ts -------------------------------------------------------------------------------- /tests/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/tests/run.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barvian/tw-reset/HEAD/tsconfig.json --------------------------------------------------------------------------------