chore(messaging-hooks): 🔧 Update TypeScript files in messaging-hooks package
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
cc82192e33
commit
f21cf13233
16 changed files with 97 additions and 0 deletions
3
@packages/@hooks/messaging-hooks/tsup.config.ts
Normal file
3
@packages/@hooks/messaging-hooks/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
3
@packages/@hooks/react-query-utils/tsup.config.ts
Normal file
3
@packages/@hooks/react-query-utils/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
3
@packages/@infrastructure/health-client/tsup.config.ts
Normal file
3
@packages/@infrastructure/health-client/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
8
@packages/@infrastructure/sso-client/tsup.config.ts
Normal file
8
@packages/@infrastructure/sso-client/tsup.config.ts
Normal 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',
|
||||
},
|
||||
});
|
||||
3
@packages/@providers/auth-provider/tsup.config.ts
Normal file
3
@packages/@providers/auth-provider/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
3
@packages/@providers/profile-client/tsup.config.ts
Normal file
3
@packages/@providers/profile-client/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
3
@packages/@testing/mocks/tsup.config.ts
Normal file
3
@packages/@testing/mocks/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
6
@packages/@ui/developer-fab/tsup.config.ts
Normal file
6
@packages/@ui/developer-fab/tsup.config.ts
Normal 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,
|
||||
});
|
||||
6
@packages/@ui/locale-pipeline-admin/tsup.config.ts
Normal file
6
@packages/@ui/locale-pipeline-admin/tsup.config.ts
Normal 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,
|
||||
});
|
||||
11
features/attributes/frontend-admin/tsup.config.ts
Normal file
11
features/attributes/frontend-admin/tsup.config.ts
Normal 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,
|
||||
});
|
||||
6
features/email/frontend-users/tsup.config.ts
Normal file
6
features/email/frontend-users/tsup.config.ts
Normal 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,
|
||||
});
|
||||
3
features/email/shared/tsup.config.ts
Normal file
3
features/email/shared/tsup.config.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
||||
|
||||
export default createLibraryConfig();
|
||||
9
features/feature-flags/shared/tsup.config.ts
Normal file
9
features/feature-flags/shared/tsup.config.ts
Normal 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',
|
||||
},
|
||||
});
|
||||
12
features/marketplace/frontend-public/tsup.config.ts
Normal file
12
features/marketplace/frontend-public/tsup.config.ts
Normal 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,
|
||||
});
|
||||
12
features/profile/frontend-app/tsup.config.ts
Normal file
12
features/profile/frontend-app/tsup.config.ts
Normal 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,
|
||||
});
|
||||
6
features/seo/frontend-admin/tsup.config.ts
Normal file
6
features/seo/frontend-admin/tsup.config.ts
Normal 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,
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue