README
Slick
"Slick!" is a component library and design system developed by Modern Message
Local Development
To run Slick locally in conjunction with another app (modernmsg/modernmsg for example) you will need to link slick and your application together with yarn link
- Run
yarn install
andyarn build
to install and build - Link your locally built slick-ui repository:
yarn link
insideslick-ui
. - Create a symbolic link from the application to the slick-ui repo:
yarn link slick-ui-lib
inside the application (inside ofmodernmsg/client
for example). - Run the application in watch mode as you normally would (e.g.
foreman s -f Procfile.hot
etc.). - In the slick-ui repo, run
yarn build
to re-build the distributed files on file changes