Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Propose changes

esdmr edited this page Nov 4, 2021 · 3 revisions

How to propose a change via pull request

Setting up

  1. If you do not have write permissions, fork the project.
  2. Clone the (forked) repository if you have not already.
  3. Create a new branch following the naming convention.
  4. Optionally push the branch to upstream.
  5. Install or update all dependencies: pnpm install.

Applying the changes

Do any modifications that is needed. Do not mix multiple changes together.

Testing the changes

  1. Build the project: pnpm run build.
  2. Lint the project: pnpm run lint.
  3. Test the project: pnpm run test.

Creating a Changeset

pnpm run changeset

Push the changes

  1. Add all the changes: git add ..
  2. Commit all the changes: git commit.
  3. Push all the changes: git push origin --set-upstream.
  4. Create a pull request.