Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.42 KB

CONTRIBUTING.MD

File metadata and controls

39 lines (23 loc) · 1.42 KB

Contributing

General

Bugs

Open issues can be found on the GitHub issues page with a "Bug" label.

These are a great place to start contributing to the repo!

Once you start work on a bug, post your intent on the issue itself. This will prevent more than one person working on it at once.

If the bug you want to work on doesn't have a related issue, open one, and attach the "Bug" label.

New features

Before adding any features, open a Feature Proposal.

This will let us talk through your proposal before you spend time on it.

solid-boundaries is a low-level building block which also makes it flexible. Keep this in mind when proposing a new feature -> does this benefit all of us, or is the feature a more specific use-case?

Documentation

If a PR introduces or changes API, please make sure to update the relevant docs (readme) or examples (storybook) as well.

Development

Getting started

In order to get started with your PR:

  1. Fork the solid-boundaries repo
  2. Clone york fork locally
  3. run pnpm install (make sure you have pnpm installed on your machine)
  4. See the scripts-section of the package.json of the project for a list of available commands
  5. Add your code and supporting tests
  6. If this is a feature that requires doc changes, make as necessary.
  7. You're ready!