Skip to content

Commit e61c3b3

Browse files
authored
Merge f683d21 into 86c9b7b
2 parents 86c9b7b + f683d21 commit e61c3b3

File tree

95 files changed

+464
-435
lines changed

Some content is hidden

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

95 files changed

+464
-435
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
To get it merged faster, kindly review the checklist below:
44

55
## Pull Request Checklist
6+
67
- [ ] Reviewed the [Contributing Guidelines](https://github.com/SAP/ui5-webcomponents-react/blob/main/CONTRIBUTING.md)
7-
+ Especially the [How to Contribute](https://github.com/SAP/ui5-webcomponents-react/blob/main/CONTRIBUTING.md#contribute-code) section
8+
- Especially the [How to Contribute](https://github.com/SAP/ui5-webcomponents-react/blob/main/CONTRIBUTING.md#contribute-code) section
89
- [ ] [Correct commit message style](https://github.com/SAP/ui5-webcomponents-react/blob/main/docs/Guidelines.md#commit-message-style)

.github/createIssueCommentsForRelease.mjs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { success as issueCommenter } from '@semantic-release/github';
21
import { readFileSync } from 'node:fs';
2+
import { success as issueCommenter } from '@semantic-release/github';
33

44
const commitShaRegExp = /commit\/(?<sha>\w{40})/gm;
55

@@ -16,7 +16,7 @@ export default async function run({ github, context }) {
1616
const { data: release } = await github.request('GET /repos/{owner}/{repo}/releases/tags/{tag}', {
1717
owner: context.repo.owner,
1818
repo: context.repo.repo,
19-
tag: `v${version}`
19+
tag: `v${version}`,
2020
});
2121
release.url = release.html_url;
2222

@@ -32,21 +32,21 @@ export default async function run({ github, context }) {
3232

3333
const semanticReleaseContext = {
3434
options: {
35-
repositoryUrl: `https://github.com/${context.repo.owner}/${context.repo.repo}`
35+
repositoryUrl: `https://github.com/${context.repo.owner}/${context.repo.repo}`,
3636
},
3737
commits,
3838
nextRelease: {
39-
version: `v${version}` // new release version
39+
version: `v${version}`, // new release version
4040
},
4141
releases: [release], // current GitHub release
4242
logger: console,
43-
env: process.env
43+
env: process.env,
4444
};
4545

4646
const Octokit = new Proxy(class {}, {
47-
construct(target, argArray, newTarget) {
47+
construct() {
4848
return github;
49-
}
49+
},
5050
});
5151

5252
await issueCommenter({}, semanticReleaseContext, { Octokit });

.github/dependabot.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "github-actions" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: 'github-actions' # See documentation for possible values
9+
directory: '/' # Location of package manifests
1010
schedule:
11-
interval: "daily"
11+
interval: 'daily'
1212
open-pull-requests-limit: 0
13-
- package-ecosystem: "npm" # See documentation for possible values
14-
directory: "/" # Location of package manifests
13+
- package-ecosystem: 'npm' # See documentation for possible values
14+
directory: '/' # Location of package manifests
1515
schedule:
16-
interval: "daily"
16+
interval: 'daily'
1717
open-pull-requests-limit: 0
1818
ignore:
1919
- dependency-name: '@storybook/addon-a11y'
@@ -24,4 +24,3 @@ updates:
2424
- dependency-name: '@storybook/react-vite'
2525
- dependency-name: 'storybook'
2626
- dependency-name: '@types/node'
27-

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL"
12+
name: 'CodeQL'
1313

1414
on:
1515
push:
16-
branches: [ main ]
16+
branches: [main]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ main ]
19+
branches: [main]
2020
schedule:
2121
- cron: '29 19 * * 6'
2222

@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
language: [ 'javascript' ]
35+
language: ['javascript']
3636
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3737
# Learn more about CodeQL language support at https://git.io/codeql-language-support
3838

.github/workflows/open-source-security.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
schedule:
8-
- cron: "12 3 * * *"
8+
- cron: '12 3 * * *'
99
workflow_dispatch:
1010

1111
jobs:
@@ -20,11 +20,9 @@ jobs:
2020
with:
2121
step-name: artifactPrepareVersion
2222
flags: --versioningType cloud_noTag
23-
23+
2424
- name: detectExecuteScan
2525
uses: SAP/project-piper-action@v1.20.0
2626
with:
2727
step-name: detectExecuteScan
2828
flags: '--token ${{ secrets.DETECT_TOKEN }}'
29-
30-

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
- uses: actions/checkout@v4
3636
with:
3737
fetch-depth: 0
38-
38+
3939
- name: Setup Node.js environment
4040
uses: actions/setup-node@v4.4.0
4141
with:
4242
node-version-file: '.nvmrc'
4343
cache: 'yarn'
44-
44+
4545
- name: Install
4646
run: |
4747
npm install -g npm
@@ -116,4 +116,3 @@ jobs:
116116
const { default: addIssueComments } = await import('${{ github.workspace }}/.github/createIssueCommentsForRelease.mjs');
117117
118118
await addIssueComments({ github, context })
119-

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ yarn-error.log
88
.cache
99
.out
1010
lerna-debug.log
11-
.awcache
1211
/temp
1312
*.tsbuildinfo
1413

@@ -27,5 +26,4 @@ packages/main/scripts/wrapperGeneration/json
2726
packages/main/tmp
2827
packages/*/src/generated/
2928

30-
.nx/cache
31-
.nx/workspace-data
29+
.nx

.pipeline/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ steps:
77
filePath: 'lerna.json'
88
versioningType: 'library'
99
customVersionField: 'version'
10-
10+
1111
detectExecuteScan:
1212
serverUrl: 'https://sap.blackducksoftware.com'
1313
projectName: 'ui5-webcomponents-react'

.prettierignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
*.module.css.ts
22
*.css.ts
3+
34
yarn.lock
5+
.next
6+
dist
7+
temp
8+
.out
49

5-
/.nx/cache
10+
.nx

.storybook/components/ArgTypesWithNote.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ArgTypes } from '@storybook/blocks';
22
import MessageStripDesign from '@ui5/webcomponents/dist/types/MessageStripDesign.js';
33
import { MessageStrip } from '@ui5/webcomponents-react';
4-
import { ComponentProps, ReactNode } from 'react';
4+
import type { ComponentProps, ReactNode } from 'react';
55
import classes from './ArgTypesWithNote.module.css';
66

77
interface ArgTypesWithNotePropTypes {

0 commit comments

Comments
 (0)