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:
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:
It speeds up the creation of components, since it avoids the individual publication process and centralizes all this at the design system level.
Cons
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:
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.
The following format is friendly when sharing a webcomponent to NPM using @atomico/exports
From the previous structure we highlight:
src/define
: import the components from src/elements
and declare them as customElements
src/elements
: groups and export components as CustomElements
since it improves the customElements definition experience, example:
Thanks to @atomico/exports this is really easy, example:
You can see a use case of this structure in @atomico/components