# Contributing

# Setup

Clone your fork of the repository

$ git clone https://github.com/YOUR_USERNAME/logger.git
1

Install npm dependencies

npm install
1

Run build process

npm run tsc:compile
1

# Test

npm run test
1

# Write documentation

Ts.Logger use docsify to convert markdown to HTML. In addition, all documentation in your code will be used to generate the Api documentation. To preview your comments on a class you can run this command:

npm run doc:serve
1

# Guidelines

  • Ts.Logger follow the git flow to generate a release note. To write your commit message see https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit
  • Please try to combine multiple commits before pushing
  • Please use TDD when fixing bugs. This means that you should write a unit test that fails because it reproduces the issue, then fix the issue and finally run the test to ensure that the issue has been resolved. This helps us prevent fixed bugs from happening again in the future
  • Please keep the test coverage at 100%. Write additional unit tests if necessary
  • Please create an issue before sending a PR if it is going to change the public interface of Ts.ED or includes significant architecture changes,
  • Feel free to ask for help from other members of the Ts.Logger team

Last Updated: 10/26/2023, 6:30:07 AM

Other topics