Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 742 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (17 loc) · 742 Bytes

Contributing

Setup

Nivo is structured into multiple packages handled by lerna. In order to install all the required dependencies and to establish links between the various packages, please execute the following:

make init

Development Mode

The easiest way to work on Nivo, is to use our storybook. The storybook development mode can be started via:

make storybook

Once you have made changes to the packages, you will need to rebuild the respective package. In this case, you have two options:

  1. Rebuild all the packages via make packages-build or…
  2. Rebuild only a specific package via, e.g. for the package bar, PACKAGE=bar make package-build-bar.