Skip to content

Latest commit

History

History
26 lines (17 loc) 路 861 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (17 loc) 路 861 Bytes

Contributing

Hi there, thanks for being willing to contribute!

Setup

  • Fork and clone the repository
  • Install dependencies via npm install
  • Create a new feature branch via git checkout -b feature-branch-name

Testing

  • Run npm run test to test the library and the example application
  • Run npm run build to build the library

Push changes

  • Add the files you want to push via git add filename, or add everything via git add .
  • Commit these changes locally and give it a proper description via git commit -m "my changes here"
  • Push these changes to your fork via git push
  • Create a new pull request

Need some guidance?