This commit implements a complete library extraction and packaging solution for converting the current Angular workspace into individual Git repositories suitable for submodule distribution. ## Changes Made: ### Public API Optimizations: - Fixed ui-design-system naming from "shared-ui" to "ui-design-system" - Optimized ui-essentials exports for better tree-shaking - Added specific exports for core components (ButtonComponent, TextInputComponent) - Improved documentation and organization of public APIs ### Library Extraction Implementation: - Created comprehensive extraction plan (LIBRARY_EXTRACTION_PLAN.md) - Implemented automated extraction script (extract-library.sh) - Extracted all 12 libraries into individual repository structures - Each library now has standalone package.json, angular.json, and configs ### Documentation & Integration: - Complete submodule integration guide (SUBMODULE_INTEGRATION_GUIDE.md) - Development workflow recommendations - Consumer integration instructions - Library maintenance strategies ### Libraries Extracted: - ui-design-system (SCSS design system) - shared-utils (utilities) - ui-essentials (essential components) - ui-data-utils (data manipulation) - ui-animations (CSS animations) - ui-accessibility (a11y features) - ui-backgrounds (background utilities) - ui-font-manager (font management) - hcl-studio (color management) - auth-client (authentication) - ui-code-display (syntax highlighting) - ui-landing-pages (landing components) ## Benefits: - LLM complexity reduction: ~90% (50k+ files → 500-2k per library) - Professional library distribution via Git submodules - Independent versioning and releases - Reusable across multiple projects - Selective library inclusion - Clean, focused development contexts 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
SSuite
This project was generated using Angular CLI version 19.2.15.
Development server
To start a local development server, run:
ng serve
Once the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
Code scaffolding
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-name
For a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --help
Building
To build the project run:
ng build
This will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
Running unit tests
To execute unit tests with the Karma test runner, use the following command:
ng test
Running end-to-end tests
For end-to-end (e2e) testing, run:
ng e2e
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
Additional Resources
For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.