This is an official React design system starter powered by Turborepo.
This Turborepo includes the following packages and apps:
docs
: A placeholder documentation site powered by Next.js@flyui/core
: core React components@flyui/utils
: shared React utilities@flyui/tsconfig
: sharedtsconfig.json
s used throughout the monorepoeslint-preset-acme
: ESLint preset
Each package and app is 100% Typescript.
This turborepo has some additional tools already setup for you:
- Typescript for static type checking
- ESLint for code linting
- Prettier for code formatting
We do not have a starter yet in create-turbo
for this quite yet. If you want to use this in the interim, you run the following command:
npx degit vercel/turborepo/examples/design-system design-system
cd design-system
yarn install
git init . && git add . && git commit -m "Init"
The NPM organization scope for this design system starter is @acme
. To change this, it's a bit manual at the moment, but you'll need to do the following:
- Rename folders in
packages/*
to replaceacme
with your desired scope - Search and replace
acme
with your desired scope - Re-run
yarn install
If you want to publish package to the public NPM registry and make them publicly available, this is already setup for you.
To publish packages to a private NPM organization scope, remove the following from each of the package.json
's
- "publishConfig": {
- "access": "public"
- },