You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/click-ui/README.md
-43Lines changed: 0 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,6 @@ You can find the official docs for the Click UI design system and component libr
46
46
-[Checking the changeset status](#checking-the-changeset-status)
47
47
-[Create a new version and changelogs](#create-a-new-version-and-changelogs)
48
48
*[Release](#release)
49
-
*[Contributing](#contributing)
50
-
-[Component RFC](#component-rfc)
51
-
-[Conventional commits](#conventional-commits)
52
49
53
50
## Requirements
54
51
@@ -539,43 +536,3 @@ Releases are automated via GitHub Actions. A workflow creates a PR with version
539
536
Use the [Create a new release Pull Request](./docs/package-release.md#create-a-new-release-pull-request) for a quick automated process.
540
537
541
538
See [Package Release](./docs/package-release.md) for detailed instructions, including use-cases.
542
-
543
-
### Component RFC
544
-
545
-
To propose a new component, open an RFC using the [Component RFC template](https://github.com/ClickHouse/click-ui/compare/main...branchName?template=component_rfc.md).
546
-
547
-
> [!NOTE]
548
-
> Replace the <branchName> in the Component RFC template URL by your branch name.
549
-
550
-
For example, to open a Component RFC for branch name `feat/slider`, you'd open the URL:
We prefer to commit our work following [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0) conventions. Conventional Commits are a simple way to write commit messages that both people and computers can understand. It help us keep track fo changes in a consistent manner, making it easier to see what was added, changed, or fixed in each commit or update.
565
-
566
-
The commit messages are formatted as **[type]/[scope]**
567
-
The **type** is a short descriptor indicating the nature of the work (e.g., feat, fix, docs, style, refactor, test, chore). This follows the conventional commit types.
568
-
569
-
The **scope** is a more detailed description of the feature or fix. This could be the component or part of the codebase affected by the change.
570
-
571
-
Here's an example of different conventional commits messages that you must follow:
572
-
573
-
```txt
574
-
test: 💍 Adding missing tests
575
-
feat: 🎸 A new feature
576
-
fix: 🐛 A bug fix
577
-
chore: 🤖 Build process or auxiliary tool changes
578
-
docs: 📝 Documentation only changes
579
-
refactor: 💡 A code change that neither fixes a bug or adds a feature
0 commit comments