Your team recently adopted a centralized design system (DS) to streamline UI consistency and accelerate development. However, your codebase still contains numerous custom components that duplicate functionality provided by the DS. To fully adopt the design system and simplify the codebase, you need to identify and replace all custom components with their DS equivalents.


https://www.youtube.com/watch?v=fy_Fezyl7E8&feature=youtu.be

Step 1: Install and Prepare Componly CLI

To start, ensure you have the Componly CLI installed:

npm install -g @componlyco/cli

For MacOS and some Linux distributions, you may need to use sudo for proper installation:

sudo npm install -g @componlyco/cli

Step 2: Scan and Generate Reports

  1. Scan Your Codebase

    Run the following command to analyze your repository and generate a comprehensive list of components:

npx componly run

This command creates a JSON file (components-usage.json) that includes data on all components, including their imports and usage.

Generate a Detailed Report

To categorize components as custom or DS-based, generate a report with:

npx componly report

Step 3: Analyze and Plan Replacements