Skip to content

Latest commit

Β 

History

History
33 lines (30 loc) Β· 972 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (30 loc) Β· 972 Bytes

How to contribute

There are a few guidelines that we need contributors to follow so that we have a chance of keeping on top of things.

1. Where do I go from here?

If you've noticed a bug or have a question, make an issue, we'll try to answer it as fast as possible.

2. Fork & Create a branch

If this is something you think you can fix, then fork Cupertino Pane and create a branch.

# Create new branch
git checkout -b my_issue

# Then we install the dependencies
npm install

3. Test with Playground

npm run serve

4. Changes & Build

# Make bundles 
npm run build

This will output the files into the dist directory.

5. Push changes

Push your changes to a topic branch in your fork of the repository. Submit a pull request to the repository. It can take several days before we can review the code you've submitted.