Design systems

Distribution and consumption

When creating design systems or component systems, we recommend that you maintain a centralized distribution structure in a single export package with multiple import paths, example:

import { Button, Input } from "my-ds";

What are the benefits of this type of distribution?

Aesthetic coherence, the entire design system leverages itself and thanks to this we gain aesthetic coherence.

While a monorepo might seem like an ideal path, it actually increases the complexity of maintenance, whether it be component versioning and dependency maintenance.

We move faster and reduce implementation errors if you don't rely on individual versioning at the component level and leave this only defined at the design system level.

This has its pros and cons:

Pros:

  1. It speeds up the creation of components, since it avoids the individual publication process and centralizes all this at the design system level.

Cons

  1. you will not be able to update a component individually, since it is leveraged at the design system level.

you always prefer to keep each component isolated in a directory with names associative to the same component, example:

β”œβ”€β”€ my-button
β”‚   β”œβ”€β”€ my-button.{js,jsx,ts,tsx}
β”‚   β”œβ”€β”€ my-button.test.{js,jsx,ts,tsx}
β”‚   β”œβ”€β”€ my-button.stories.js
β”‚   └── my-button.md
└── my-input
    β”œβ”€β”€ my-input.{js,jsx,ts,tsx}
    β”œβ”€β”€ my-input.test.{js,jsx,ts,tsx}
    β”œβ”€β”€ my-input.stories.js
    └── my-input.md

why? The NPM-oriented @atomico/exports packaging tool allows automatic export from the recommended structure,@atomico/exports will generate a modern package.json to current standards, automatically generating all (main, types, exports and more) what is necessary for your package to be distributed correctly.

Last updated