This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Propose changes
esdmr edited this page Nov 4, 2021
·
3 revisions
- If you do not have
write
permissions, fork the project. - Clone the (forked) repository if you have not already.
- Create a new branch following the naming convention.
- Optionally push the branch to upstream.
- Install or update all dependencies:
pnpm install
.
Do any modifications that is needed. Do not mix multiple changes together.
- Build the project:
pnpm run build
. - Lint the project:
pnpm run lint
. - Test the project:
pnpm run test
.
pnpm run changeset
- Add all the changes:
git add .
. - Commit all the changes:
git commit
. - Push all the changes:
git push origin --set-upstream
. - Create a pull request.