Skip to content

Latest commit

History

History
27 lines (18 loc) 路 890 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (18 loc) 路 890 Bytes

Contributing

Hi there, thanks for being willing to contribute!

Setup

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

Testing

  • Run npm run test:lib to test the library
  • Run npm run test:app to test the 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?