Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

55 lines (40 loc) · 1.18 KB

Contributing

Thank you for considering contributing to missing-coordinates. We hope these guidelines make it easier and shed some light on our approach and processes.

File organization

We use yarn workspaces to manage packages in this monorepo.

missing-coordinates/
  package.json
  packages/
    missing-coordinates/
      package.json
      src/
      ...
    storybook/
      package.json
      stories/
      ...
  ...

Development

To develop and enhance missing-coordinates, we provide both a npm package for the main functionality, and a storybook package for demo, visualization, and debugging purposes.

Run storybook

yarn storybook

Run missing-coordinates in dev mode (interactive rebuilds)

cd packages/missing-coordinates
yarn dev

Build missing coordinates

yarn build

Committing

This repository follows conventional commits guideline for commit messages and has a commitlint hook which will require you to have the valid commit message before committing.

You can use cz to help you create a commit message.