Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 684 Bytes

CONTRIBUTE.md

File metadata and controls

23 lines (20 loc) · 684 Bytes

Contribute

We do our best to accept all PRs that help advance the project.
Thanks for your contributions!

Process create a new component

  1. Create a folder with the name of the component, example list or chart-bar
  2. Create a file named component.json inside the folder containing:
{
  "name":"chart-bar",
  "author": "fabiorogeriosj",
  "dependencies": [
    "base"
  ]
}
  1. Test and document your component in an HTML file inside your component's folder
  2. Open a Pull Request against the master branch
  3. Wait for review and discussion. Do poke us if a few days elapse to remind us.
  4. Your code will be merged if accepted!