UNPKG

ocularbook

Version:

Built with Svelte + TS + Vite + HeroIcons

14 lines (11 loc) 390 B
export const getFiles = async (): Promise<string[]> => { const internalSources = await import.meta.glob("/**/*.stories.svelte"); return [...Object.keys(internalSources)]; }; export const log = (...message: string[]) => { console.log( `%cOcularbook%c ${message.join(" ")}`, "color:white; background: #4056ff; border-radius: 6px; padding: 0.2rem", "color:unset;", ); };