This is a starter repositiry for the particpants of the workshop. Refer to Handout page for detailed info on how to work with this repo.
The project is split into 2 independent Yarn workspaces. Read below what you can do with each of them.
yarn tokens:build
- builds token files. Run it every time when you reexport files from Figma.yarn tokens:version
- bumps tokens version and creates a commit with the contents ofdist/
folder.
A workspace for processing design tokens and developing your components library.
- Storybook for development and preview of components
- Style-dictionary for transforming raw json with tokens, xported from Figma to ES6 modules.
- Webpack for building the library.
- Optional: visual regression tests with Creevey
design-system/
┣ .add-component/
┣ .storybook/
┣ dist/
┣ node_modules/
┣ src/
┃ ┣ components/
┃ ┃ ┣ Avatar/
┃ ┃ ┣ Button/
┃ ┃ ┗ ...
┃ ┣ tokens/
┃ ┃ ┣ dist/
┃ ┃ ┣ config.js
┃ ┃ ┗ design-tokens.json
┃ ┣ color.stories.mdx
┃ ┣ global.js
┃ ┣ index.js
┃ ┣ intro.stories.mdx
┃ ┗ typography.stories.mdx
┣ package.json
┗ webpack.config.js
Place design-tokens.json
(a file exported from Figma) into the design-system/src/tokens
folder. After running build, processed files will be added to tokens/dist
.
Inside a config.js
you already got a tailored style-dictionary config, which works well with current setup. If you want to change the shape of your tokens, please refer to style-dictionary documentation.
yarn design-system
- starts storybook development server at https://localhost:6006. Alias:yarn start
.yarn add-component <ComponentName>
- adds template files for new componentyarn design-system:build
- builds components library intodist/
folder.yarn design-system:version
- bumps library version and creates a commit with contents ofdist/
folder.yarn tokens
- rebuilds tokensyarn test:creevey
- run tests with creeveyyarn test:creevey:ui
- run creevey with UIyarn test:creevey:update
- update all screenshots for creevey
A workspace where you build your application using the components library.
product/
┣ build/
┣ node_modules/
┣ public/
┃ ┗ index.html
┣ src/
┃ ┣ assets/
┃ ┣ pages/
┃ ┃ ┣ cart.js
┃ ┃ ┣ checkout.js
┃ ┃ ┣ details.js
┃ ┃ ┗ home.js
┃ ┗ index.js
┗ package.json
yarn product
- starts development server at https://localhost:3000yarn product:build
- creates minified production buildyarn product:version
- bumps product versionyarn deploy
- deploy product manually. Normally you don't need it, Github Action s will deploy automatically every time you release a new version.