Contributing
English
If you want to make changes or improvements to the plugin:
- Fork the repository.
- Clone your fork locally.
- Install dependencies:
npm install
(or yarn) - Start development build:
npm run dev
(or yarn dev) - Create a new branch:
git checkout -b feature/feature-name
- Make changes and commit:
git commit -m "feat: Description of changes"
(Try to follow conventional commit messages) - Push changes to your fork:
git push origin feature/feature-name
- Open a Pull Request in the original repository.
Please ensure your code adheres to the existing style and include updates to the documentation (/docs
) if your changes affect usage or settings.
Русский
Если вы хотите внести изменения или улучшения в плагин:
- Форкните репозиторий.
- Клонируйте ваш форк локально.
- Установите зависимости:
npm install
(или yarn) - Запустите сборку для разработки:
npm run dev
(или yarn dev) - Создайте новую ветку:
git checkout -b feature/имя-функционала
- Внесите изменения и сделайте коммит:
git commit -m "feat: Описание изменений"
(Старайтесь следовать conventional commit messages) - Отправьте изменения в свой форк:
git push origin feature/имя-функционала
- Откройте Pull Request в оригинальном репозитории.
Пожалуйста, убедитесь, что ваш код соответствует существующему стилю, и включите обновления документации (/docs
), если ваши изменения затрагивают использование или настройки.