Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 475 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (20 loc) · 475 Bytes

Contributing

  • Before adding any new feature or a fix make sure to open an issue first!
  1. Clone the project, and install dependencies.
$ git clone https://github.com/danrevah/typeserializer.git
$ npm install
  1. Create a new branch
$ git checkout -b feat/myFeature 
  • OR: *
$ git checkout -b fix/myBugFix 

Add tests & make sure everything is running properly.

$ npm test

Commit, push and make a new pull request!