fix: Properly architected lib repo to export index.ts into the dist
Some checks failed
Publish Svelte Tailwind Library / build-and-publish (push) Failing after 32s

This commit is contained in:
2025-09-16 07:35:53 +01:00
parent 1dd4bdd08e
commit b31a70d64d
14 changed files with 18 additions and 25 deletions

9
src/lib/index.ts Normal file
View File

@@ -0,0 +1,9 @@
export { default as Timeline } from './components/Timeline.svelte';
export { default as SkillProgress } from './components/SkillProgress.svelte';
export { default as Section } from './components/Section.svelte';
export { default as PageIcon } from './components/PageIcon.svelte';
export { default as Loading } from './components/Loading.svelte';
export { default as GridGallery } from './components/GridGallery.svelte';
export { default as Gallery } from './components/Gallery.svelte';
export { default as Collapsible } from './components/Collapsible.svelte';
export { default as Card } from './components/Cards/Card.svelte';