Skip to content

Latest commit

 

History

History
74 lines (55 loc) · 3.25 KB

CONTRIBUTING.md

File metadata and controls

74 lines (55 loc) · 3.25 KB

Contributing to Basemaps

We would love for you to contribute to basemaps and help make it even better than it is today! As a contributor, here are the guidelines we would like you to follow:

Building

This repository requires NodeJs > 18

Use n or fnm to manage nodeJs versions

# Download the latest nodejs 
n latest
# Install node deps
npm install

# Build everything into /build
npm run build

# Run the unit tests
npm run test

For a fresh rebuild

npm run clean

Packages

this repository is a monorepo for everything related to basemaps

Commit message

This repository uses Conventional Commits

We have very precise rules over how our git commit messages can be formatted. This leads to more readable messages that are easy to follow when looking through the project history. But also, we use the git commit messages to generate the change log.

Type

Must be one of the following:

  • build: Changes that affect the build system or external dependencies
  • ci: Changes to our CI configuration files and scripts
  • docs: Documentation only changes
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug nor adds a feature
  • style: Changes that do not affect the meaning of the code
  • test: Adding missing tests or correcting existing tests