Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/Guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,19 @@ The following rules are enforced by commitlint:
**Features and fixes:**
```
feat(cli): Add "versions" command
```
```
fix(fs): Correctly handle paths containing non-ASCII characters on Windows
```
```
perf(builder): Improve bundle generation speed by 25%
```

**Dependencies:**
```
deps(cli): Update @ui5/logger to v4.0.0
```
```
build(deps-dev): Update eslint to v9.0.0
```

Expand All @@ -73,7 +79,11 @@ BREAKING CHANGE: The "init" command has been removed. Use "create" instead.
**Workspace-wide changes (no scope):**
```
ci: Update GitHub Actions to use Node.js 20
```
```
docs: Update contribution guidelines
```
```
build: Configure new linting rules
```

Expand All @@ -92,7 +102,11 @@ When making changes that affect multiple packages, create individual commits for
For a feature spanning multiple packages:
```
feat(cli): Add support for new build option
```
```
feat(builder): Implement new build option processing
```
```
feat(fs): Add helper methods for new build option
```

Expand Down