feat: update client package dependencies and Rollup configuration

- Added rollup-plugin-postcss to package.json and updated package-lock.json.
- Enhanced Rollup configuration to include postcss plugin for CSS handling.
- Updated index.ts to export all components from the components directory for better modularity.
This commit is contained in:
Danny Avila 2025-07-13 08:53:32 -04:00 committed by Marco Beretta
parent 2af4ca5b5c
commit ae43b4eed0
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
4 changed files with 1087 additions and 9 deletions

View file

@ -1,9 +1,10 @@
// Components
export { default as Toast } from './components/Toast';
export * from './components';
// Hooks
export * from './hooks';
export * from './common';
// Common types
export * from './common/types';