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

Latest commit

 

History

History
67 lines (48 loc) · 1.57 KB

CONTRIBUTING.md

File metadata and controls

67 lines (48 loc) · 1.57 KB

Contributing

All contributions are appreciated, and anyone is welcome to contribute to the library.


Issues

If you have any suggestions for improvements to @devgrace documentation, features, or otherwise, please raise an issue.


Pull Requests

In addition to raising issues, you can fork @devgrace and raise pull requests after working on improvements yourself.

Please see the caveats below 🙏

  • if you are adding a new feature, please open an issue to discuss it in advance.
  • The node version should be v18.17.1. You can easily version match with nvm install, nvm use.
nvm install
nvm use
  • Please test and type check your Pull Request before creating it.
yarn test
yarn typecheck

If you would like to contribute to the official documentation, please create a .md file in the docs/prepareDocs folder for en and ko.

스크린샷 2023-08-20 오전 1 30 55


Conventional Commits

<type>(<package scope>): <descriptions>

ex: feat(ui): Add Select Component

Type

Type must be one of those

  • feat: A new feature
  • fix: A bug fix
  • refactor: A code change that neither fixes a bug nor adds a feature
  • test: Adding missing tests or correcting existing tests
  • docs: Documentation only changes

Package Scope

The name of package that you made changes.

  • ui
  • react
  • utils

Descriptions

A summary description of the changes you worked on.