├── .github ├── examples │ └── github-release-please.yml └── workflows │ └── release-please.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .nvmrc ├── .storybook ├── main.ts ├── preview.ts └── vite.config.ts ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── lib │ ├── components │ │ ├── atoms │ │ │ ├── at-button │ │ │ │ ├── at-button.stories.tsx │ │ │ │ ├── at-button.test.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── molecules │ │ │ ├── index.ts │ │ │ └── ml-banner │ │ │ │ └── index.tsx │ │ └── organisms │ │ │ ├── index.ts │ │ │ └── or-footer │ │ │ └── index.tsx │ ├── index.ts │ ├── storybook-utils.ts │ └── tailwind │ │ └── theme.css └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.mts /.github/examples/github-release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.github/examples/github-release-please.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.16.0 2 | -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /.storybook/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.storybook/vite.config.ts -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/lib/components/atoms/at-button/at-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/atoms/at-button/at-button.stories.tsx -------------------------------------------------------------------------------- /src/lib/components/atoms/at-button/at-button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/atoms/at-button/at-button.test.tsx -------------------------------------------------------------------------------- /src/lib/components/atoms/at-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/atoms/at-button/index.tsx -------------------------------------------------------------------------------- /src/lib/components/atoms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './at-button' 2 | -------------------------------------------------------------------------------- /src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/index.ts -------------------------------------------------------------------------------- /src/lib/components/molecules/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ml-banner' 2 | -------------------------------------------------------------------------------- /src/lib/components/molecules/ml-banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/molecules/ml-banner/index.tsx -------------------------------------------------------------------------------- /src/lib/components/organisms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './or-footer' 2 | -------------------------------------------------------------------------------- /src/lib/components/organisms/or-footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/components/organisms/or-footer/index.tsx -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/storybook-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/src/lib/storybook-utils.ts -------------------------------------------------------------------------------- /src/lib/tailwind/theme.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss'; 2 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgnacioNMiranda/vite-component-library-template/HEAD/vite.config.mts --------------------------------------------------------------------------------