Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 978 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (37 loc) · 978 Bytes

Contributing

Recommendations and requirements for how to best contribute to svelte-vega. As always, thanks for contributing, and we hope these guidelines make it easier and shed some light on our approach and processes.

File organization

We use yarn workspaces to manage versions and dependencies between packages in this monorepo.

svelte-vega/
  package.json
  ...
  packages/
    package1/
      package.json
      ...
      src/
      test/
      ...
      lib/
      esm/
      ...
    ...

Development

Run storybook

yarn storybook

Run sample

yarn sample

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.