Skip to content

Commit 0492f56

Browse files
authored
refactor: Integrate @ui5/builder into the monorepo (#1122)
2 parents 021991b + 32203e1 commit 0492f56

File tree

1,251 files changed

+83262
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,251 files changed

+83262
-0
lines changed

packages/builder/.chglog/CHANGELOG.tpl.md

Lines changed: 1033 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{{ range .Versions }}
2+
{{ range .CommitGroups -}}
3+
### {{ .Title }}
4+
{{ range .Commits -}}
5+
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} [`{{ .Hash.Short }}`]({{ $.Info.RepositoryURL }}/commit/{{ .Hash.Long }})
6+
{{ end }}
7+
{{ end -}}
8+
9+
{{- if .RevertCommits -}}
10+
### Reverts
11+
{{ range .RevertCommits -}}
12+
- {{ .Revert.Header }}
13+
{{ end }}
14+
{{ end -}}
15+
16+
{{- if .NoteGroups -}}
17+
{{ range .NoteGroups -}}
18+
### {{ .Title }}
19+
{{ range .Notes }}
20+
{{ .Body }}
21+
{{ end }}
22+
{{ end -}}
23+
{{ end -}}
24+
25+
{{ if .Tag.Previous }}
26+
### All changes
27+
[`{{ .Tag.Previous.Name }}...{{ .Tag.Name }}`]
28+
{{ end }}
29+
30+
{{ if .Tag.Previous -}}
31+
[`{{ .Tag.Previous.Name }}...{{ .Tag.Name }}`]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
32+
{{ end -}}
33+
{{ end -}}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
style: github
2+
template: CHANGELOG.tpl.md
3+
info:
4+
title: CHANGELOG
5+
repository_url: https://github.com/SAP/ui5-builder
6+
options:
7+
commits:
8+
filters:
9+
Type:
10+
- FEATURE
11+
- FIX
12+
- PERF
13+
- DEPENDENCY
14+
- BREAKING
15+
commit_groups:
16+
title_maps:
17+
FEATURE: Features
18+
FIX: Bug Fixes
19+
PERF: Performance Improvements
20+
DEPENDENCY: Dependency Updates
21+
BREAKING: Breaking Changes
22+
header:
23+
pattern: "^\\[(\\w*)\\]\\s(?:([^\\:]*)\\:\\s)?(.*)$"
24+
pattern_maps:
25+
- Type
26+
- Scope
27+
- Subject
28+
issues:
29+
prefix:
30+
- "#"
31+
notes:
32+
keywords:
33+
- BREAKING CHANGE
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
style: github
2+
template: RELEASE.tpl.md
3+
info:
4+
repository_url: https://github.com/SAP/ui5-builder
5+
options:
6+
tag_filter_pattern: '^v[^0123]' # For release notes ignore versions below v4 to that we always compare the _last v4+_ tag with the current release
7+
commits:
8+
filters:
9+
Type:
10+
- FEATURE
11+
- FIX
12+
- PERF
13+
- DEPENDENCY
14+
- BREAKING
15+
commit_groups:
16+
title_maps:
17+
FEATURE: Features
18+
FIX: Bug Fixes
19+
PERF: Performance Improvements
20+
DEPENDENCY: Dependency Updates
21+
BREAKING: Breaking Changes
22+
header:
23+
pattern: "^\\[(\\w*)\\]\\s(?:([^\\:]*)\\:\\s)?(.*)$"
24+
pattern_maps:
25+
- Type
26+
- Scope
27+
- Subject
28+
issues:
29+
prefix:
30+
- "#"
31+
notes:
32+
keywords:
33+
- BREAKING CHANGE

packages/builder/.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# see http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = tab
8+
9+
[*.{css,html,js,cjs,mjs,jsx,ts,tsx,less,txt,json,yml,md}]
10+
trim_trailing_whitespace = true
11+
end_of_line = lf
12+
indent_size = 4
13+
insert_final_newline = true
14+
15+
[*.{yml,yaml}]
16+
indent_style = space
17+
indent_size = 2
18+
19+
[*.md]
20+
trim_trailing_whitespace = false

packages/builder/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 🚨 Issues Have Been Transferred to UI5 CLI Repository
2+
3+
Please create new issues in the UI5 CLI repository: https://github.com/UI5/cli/issues/new/choose
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Report UI5 CLI Issues or Request a Feature
4+
url: https://github.com/UI5/cli/issues/new/choose
5+
about: Please create new issues in the UI5 CLI repository
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
**Thank you for your contribution!** 🙌
2+
3+
To get it merged faster, kindly review the checklist below:
4+
5+
## Pull Request Checklist
6+
- [ ] Reviewed the [Contributing Guidelines](https://github.com/UI5/cli/blob/main/CONTRIBUTING.md#-contributing-code)
7+
+ Especially the [How to Contribute](https://github.com/UI5/cli/blob/main/CONTRIBUTING.md#how-to-contribute) section
8+
- [ ] [No merge commits](https://github.com/UI5/cli/blob/main/docs/Guidelines.md#no-merge-commits)
9+
- [ ] [Correct commit message style](https://github.com/UI5/cli/blob/main/docs/Guidelines.md#commit-message-style)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: npm
8+
directory: "/"
9+
schedule:
10+
interval: weekly
11+
day: sunday
12+
time: "10:00"
13+
timezone: Etc/UCT
14+
reviewers:
15+
- "SAP/ui5-foundation"
16+
versioning-strategy: increase
17+
commit-message:
18+
prefix: "[DEPENDENCY] "
19+
prefix-development: "[INTERNAL] "

0 commit comments

Comments
 (0)