Under Construction
This monorepo is an experimental project for research and development in a UI design system.
This project was bootstrapped with the template Turborepo Design System Starter.
For more information on UI design systems, see introduction to design systems.
A UI design system codifies existing UI components into a central repository. It is built to address having to paste the same components into multiple projects again and again.
- 🫙 Devcontainer - Develop inside a dev container using the file
.devcontainer/devcontainer.json
in Visual Studio Code. - 🏎 Turborepo — High-performance build system for Monorepos
- 🚀 React — JavaScript library for user interfaces
- 🛠 Tsup — TypeScript bundler powered by esbuild
- 📖 Storybook — UI component environment powered by Vite
- 🤘 TypeScript for static type checking
- 🧻 ESLint for code linting
- 💅 Prettier for code formatting
- 🤬 Changesets for managing versioning and changelogs
- 🤖 GitHub Actions for fully automated package publishing
pnpm build
- Build all packages, including the Storybook sitepnpm dev
- Run all packages locally and preview with Storybookpnpm lint
- Lint all packagespnpm changeset
- Generate a changesetpnpm clean
- Clean up allnode_modules
anddist
folders (runs each package's clean script)
This example uses Changesets to manage versions, create changelogs, and publish to npm. It's preconfigured so you can start publishing packages immediately.
You'll need to create an NPM_TOKEN
and GITHUB_TOKEN
and add it to your GitHub repository settings to enable access to npm. It's also worth installing the Changesets bot on your repository.
To generate your changelog, run pnpm changeset
locally:
- Which packages would you like to include? – This shows which packages and changed and which have remained the same. By default, no packages are included. Press
space
to select the packages you want to include in thechangeset
. - Which packages should have a major bump? – Press
space
to select the packages you want to bump versions for. - If doing the first major version, confirm you want to release.
- Write a summary for the changes.
- Confirm the changeset looks as expected.
- A new Markdown file will be created in the
changeset
folder with the summary and a list of the packages included.
When you push your code to GitHub, the GitHub Action will run the release
script defined in the root package.json
:
turbo run build --filter=docs^... && changeset publish
Turborepo runs the build
script for all publishable packages (excluding docs) and publishes the packages to npm. By default, this example includes acme
as the npm organization. To change this, do the following:
- Rename folders in
packages/*
to replaceacme
with your desired scope - Search and replace
acme
with your desired scope - Re-run
pnpm install
To publish packages to a private npm organization scope, remove the following from each of the package.json
's
- "publishConfig": {
- "access": "public"
- },
Project '@curol/docs' is deployed to the platform vercel. apps/docs/vercel.json
contains the config for deployment. For storybook static site, use
{
"outputDirectory": "storybook-static"
}