mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
- Create new @zitare/content package with 50 German quotes - Include 10 categories: motivation, weisheit, liebe, leben, erfolg, glueck, freundschaft, mut, hoffnung, natur - Add utility functions: getRandomQuote, getDailyQuote, searchQuotes, getQuotesByCategory, formatQuote, etc. - Migrate matrix-zitare-bot to use the shared package - Remove hardcoded quotes from bot configuration
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['esm', 'cjs'],
|
|
dts: true,
|
|
clean: true,
|
|
sourcemap: true,
|
|
});
|