Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

56 lines (36 loc) · 1.21 KB

Contributing guidelines

Hello there!

This project follows a code of conduct. Please read it. All contributions are subject to it.

Prerequisites

The following software will be required to contribute to this project:

  • git
  • Node.js (version 20.18.0 or higher)
  • npm (version 10 or higher)

Development

Install dependencies

npm install

Run tests

npm test

Build the contents of the dist directory

npm run build

Committing changes

This project follows the Angular convention for naming commits.

Examples:

feat: adds support for parameter serializer
fix: interceptors being executed in the wrong order
docs: expands examples

Pull request guidelines

  • In case of submitting a contribution for a new feature, please explain briefly why you think the feature is necessary. Ideally, an issue for a feature request was submitted and approved beforehand, but this is not a requirement.
  • Please provide unit tests for feature or bug fix contributions.