Skip to content

Commit 0191d23

Browse files
authored
Merge branch 'main' into remove-github-link
2 parents 54c2b32 + 8bd98eb commit 0191d23

12 files changed

+42
-20
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": ["next", "prettier"]
33
}

.github/workflows/nextjs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Node
5252
uses: actions/setup-node@v3
5353
with:
54-
node-version: "16"
54+
node-version: "20"
5555
cache: ${{ steps.detect-package-manager.outputs.manager }}
5656
- name: Setup Pages
5757
uses: actions/configure-pages@v3

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ node_modules*
44
.next*
55
**/generated/**
66
LICENSE
7+
.gitignore
8+
.tekton

.tekton/rekor-search-ui-1-0-gamma-pull-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ spec:
230230
- name: name
231231
value: buildah
232232
- name: bundle
233-
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:cfb32c9f1ec9c217bc81389d6aeacdb9e7a092a7fa86d4fed7b6fbb2612f5c1d
233+
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:e1e6c6308b8c7d5aa2faa02129af7fcc9e8dc4bbfe741c1acab5c9edca28fb77
234234
- name: kind
235235
value: task
236236
resolver: bundles

.tekton/rekor-search-ui-1-0-gamma-push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ spec:
227227
- name: name
228228
value: buildah
229229
- name: bundle
230-
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:cfb32c9f1ec9c217bc81389d6aeacdb9e7a092a7fa86d4fed7b6fbb2612f5c1d
230+
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:e1e6c6308b8c7d5aa2faa02129af7fcc9e8dc4bbfe741c1acab5c9edca28fb77
231231
- name: kind
232232
value: task
233233
resolver: bundles

.tekton/rekor-search-ui-pull-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ spec:
222222
- name: name
223223
value: buildah
224224
- name: bundle
225-
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:cfb32c9f1ec9c217bc81389d6aeacdb9e7a092a7fa86d4fed7b6fbb2612f5c1d
225+
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:e1e6c6308b8c7d5aa2faa02129af7fcc9e8dc4bbfe741c1acab5c9edca28fb77
226226
- name: kind
227227
value: task
228228
resolver: bundles

.tekton/rekor-search-ui-push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ spec:
219219
- name: name
220220
value: buildah
221221
- name: bundle
222-
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:cfb32c9f1ec9c217bc81389d6aeacdb9e7a092a7fa86d4fed7b6fbb2612f5c1d
222+
value: quay.io/redhat-appstudio-tekton-catalog/task-buildah:0.1@sha256:e1e6c6308b8c7d5aa2faa02129af7fcc9e8dc4bbfe741c1acab5c9edca28fb77
223223
- name: kind
224224
value: task
225225
resolver: bundles

next.config.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4-
transpilePackages: [
5-
"@patternfly/react-core",
6-
"@patternfly/react-styles"
7-
],
4+
transpilePackages: ["@patternfly/react-core", "@patternfly/react-styles"],
85
};
96

107
module.exports = nextConfig;

package-lock.json

+27-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"dev": "next dev",
99
"build": "next build",
1010
"start": "next start",
11+
"format": "prettier --check .",
12+
"format:fix": "prettier --write .",
1113
"lint": "next lint",
1214
"generate": "./hack/generate_types.sh"
1315
},
@@ -36,7 +38,8 @@
3638
"caniuse-lite": "^1.0.30001441",
3739
"eslint": "8.10.0",
3840
"eslint-config-next": "13.0.0",
39-
"prettier": "^3.0.0",
41+
"eslint-config-prettier": "9.1.0",
42+
"prettier": "3.2.5",
4043
"typescript": "4.6.2"
4144
}
4245
}

src/modules/components/Entry.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export function Entry({ entry }: { entry: LogEntry }) {
101101
? [
102102
...expanded.slice(0, index),
103103
...expanded.slice(index + 1, expanded.length),
104-
]
104+
]
105105
: [...expanded, id];
106106
setExpanded(newExpanded);
107107
};

src/pages/_app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { AppProps } from "next/app";
2-
import '@patternfly/react-core/dist/styles/base.css';
2+
import "@patternfly/react-core/dist/styles/base.css";
33

44
function App({ Component, pageProps }: AppProps) {
55
return <Component {...pageProps} />;

0 commit comments

Comments
 (0)