Here is a quick guide to doing code contributions to lexical-beautiful-mentions.
- Fork this repository.
- Create a new branch following the convention
[type/scope]
. Type can be eitherfix
,feat
, or any other commit convention type. Scope is a short describes of the work. - Install dependencies:
npm install
- Start the app:
npm run dev
- Make and commit your changes following the commit convention.
- Ensure tests and build passes:
npm run hygiene npm run test npm run e2e npm run build
- If you've changed APIs, update the documentation.
- Push your branch.
- Submit a pull request to the upstream lexical-beautiful-mentions repository.
Maintainers will merge the pull request by squashing all commits and editing the commit message if necessary.