1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-09-11 23:09:22 +02:00

Compare commits

...

7 Commits

Author SHA1 Message Date
semantic-release-bot
0f44e64c0c chore(release): 3.3.2 [skip ci] 2024-07-20 08:34:00 +00:00
84c192bbef chore: usage of main instead of master 2024-07-20 10:31:14 +02:00
6f78a0686c fix: locale text with font-semibold 2024-07-20 10:28:17 +02:00
2897d181c5 Revert "fix: stop using flag image, use emoji instead"
This reverts commit f64acb68c7.
2024-07-20 10:26:19 +02:00
f94ce7d7bc fix: update Node.js to v20.15.1 (security release) 2024-07-20 10:21:16 +02:00
semantic-release-bot
dd09092842 chore(release): 3.3.1 [skip ci] 2024-07-06 21:01:51 +00:00
f64acb68c7 fix: stop using flag image, use emoji instead 2024-07-06 02:33:49 +02:00
9 changed files with 13 additions and 13 deletions

View File

@@ -4,7 +4,7 @@ on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
branches: [main, develop]
jobs:
build:

View File

@@ -4,7 +4,7 @@ on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
branches: [main, develop]
jobs:
lint:

View File

@@ -2,7 +2,7 @@ name: "Release"
on:
push:
branches: [master]
branches: [main]
jobs:
release:

View File

@@ -4,7 +4,7 @@ on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
branches: [main, develop]
jobs:
test-unit:

View File

@@ -1,5 +1,5 @@
{
"branches": ["master"],
"branches": ["main"],
"plugins": [
[
"@semantic-release/commit-analyzer",
@@ -30,7 +30,7 @@
[
"@saithodev/semantic-release-backmerge",
{
"branches": [{ "from": "master", "to": "develop" }],
"branches": [{ "from": "main", "to": "develop" }],
"backmergeStrategy": "merge"
}
]

View File

@@ -1,9 +1,9 @@
FROM node:20.12.2 AS builder-dependencies
FROM node:20.15.1 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./package*.json ./
RUN npm clean-install
FROM node:20.12.2 AS builder
FROM node:20.15.1 AS builder
ENV NEXT_TELEMETRY_DISABLED=1
ENV IS_STANDALONE=true
WORKDIR /usr/src/application
@@ -11,7 +11,7 @@ COPY --from=builder-dependencies /usr/src/application/node_modules ./node_module
COPY ./ ./
RUN npm run build
FROM node:20.12.2-slim AS runner
FROM node:20.15.1-slim AS runner
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0
ENV NEXT_TELEMETRY_DISABLED=1

View File

@@ -22,7 +22,7 @@ export const LocaleFlag = (props: LocaleFlagProps): JSX.Element => {
src={`/images/locales/${locale}.svg`}
alt={locale}
/>
<p data-cy="locale-flag-text" className="mx-2 text-base">
<p data-cy="locale-flag-text" className="mx-2 text-base font-semibold">
{i18n.translate(`common.${locale}`)}
</p>
</>

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "theoludwig",
"version": "3.3.0",
"version": "3.3.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "theoludwig",
"version": "3.3.0",
"version": "3.3.2",
"hasInstallScript": true,
"dependencies": {
"@fontsource/montserrat": "5.0.18",

View File

@@ -1,6 +1,6 @@
{
"name": "theoludwig",
"version": "3.3.0",
"version": "3.3.2",
"private": true,
"repository": {
"type": "git",