chore(messaging-hooks): 🔧 Update TypeScript files in messaging-hooks package

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-04 00:09:16 -08:00
parent cc82192e33
commit f21cf13233
16 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,8 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
entry: {
index: 'src/index.ts',
react: 'src/hooks/index.ts',
},
});

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,6 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,6 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,11 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
entry: {
index: 'src/index.ts',
hooks: 'src/hooks/index.ts',
components: 'src/components/index.ts',
},
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,6 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,3 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig();

View file

@ -0,0 +1,9 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
entry: {
index: 'src/index.ts',
react: 'src/react.ts',
nestjs: 'src/nestjs.ts',
},
});

View file

@ -0,0 +1,12 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
entry: {
index: 'src/index.ts',
'extension-points': 'src/extension-points/index.ts',
plugins: 'src/plugins/index.ts',
theme: 'src/theme/index.ts',
},
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,12 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
entry: {
index: 'src/index.ts',
pages: 'src/pages/index.ts',
hooks: 'src/hooks/index.ts',
configs: 'src/configs/index.ts',
},
// Inject CSS into JS bundle for UI components
injectStyle: true,
});

View file

@ -0,0 +1,6 @@
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
// Inject CSS into JS bundle for UI components
injectStyle: true,
});