Skip to content

Commit d85ce93

Browse files
Merge pull request #30 from PascalHonegger/feat/updates
Dep Updates
2 parents 900aa24 + 9edfba6 commit d85ce93

7 files changed

Lines changed: 796 additions & 851 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24-alpine AS build_frontend
1+
FROM node:26-alpine AS build_frontend
22
RUN corepack enable
33
COPY ./Frontend /home/node/src
44
WORKDIR /home/node/src

Frontend/package.json

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jasstracker",
33
"version": "0.1.0",
44
"private": true,
5-
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
5+
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
66
"license": "MIT",
77
"type": "module",
88
"scripts": {
@@ -17,36 +17,31 @@
1717
"dependencies": {
1818
"mande": "^2.0.9",
1919
"pinia": "^3.0.4",
20-
"vue": "^3.5.33",
20+
"vue": "^3.5.39",
2121
"vue-draggable-next": "^2.3.0",
22-
"vue-router": "^5.0.6",
22+
"vue-router": "^5.1.0",
2323
"vue-toastification": "2.0.0-rc.5",
2424
"vue3-charts": "^1.1.33"
2525
},
2626
"devDependencies": {
27-
"@eslint/js": "^9.39.4",
28-
"@tailwindcss/vite": "^4.2.4",
27+
"@eslint/js": "^10.0.1",
28+
"@tailwindcss/vite": "^4.3.1",
2929
"@tsconfig/node22": "^22.0.5",
3030
"@types/d3-axis": "^3.0.6",
3131
"@types/d3-shape": "^3.1.8",
32-
"@types/node": "^24.12.2",
33-
"@vitejs/plugin-vue": "^6.0.6",
32+
"@types/node": "^26.0.1",
33+
"@vitejs/plugin-vue": "^6.0.7",
3434
"@vue/eslint-config-prettier": "^10.2.0",
35-
"@vue/eslint-config-typescript": "^14.7.0",
35+
"@vue/eslint-config-typescript": "^14.9.0",
3636
"@vue/tsconfig": "^0.9.1",
37-
"eslint": "^9.39.4",
38-
"eslint-plugin-vue": "^10.9.0",
37+
"eslint": "^10.6.0",
38+
"eslint-plugin-vue": "^10.9.2",
3939
"npm-run-all": "^4.1.5",
40-
"prettier": "^3.8.3",
41-
"tailwindcss": "^4.2.4",
40+
"prettier": "^3.9.1",
41+
"tailwindcss": "^4.3.1",
4242
"typescript": "^6.0.3",
43-
"vite": "^8.0.16",
44-
"vue-tsc": "^3.2.7"
45-
},
46-
"pnpm": {
47-
"onlyBuiltDependencies": [
48-
"esbuild",
49-
"vue-demi"
50-
]
43+
"typescript-eslint": "^8.62.0",
44+
"vite": "^8.1.0",
45+
"vue-tsc": "^3.3.5"
5146
}
5247
}

Frontend/pnpm-lock.yaml

Lines changed: 765 additions & 810 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Frontend/src/components/ScoreboardTable.vue

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ const teams = computed(() => [props.game.team1, props.game.team2]);
5858
<template v-for="(team, index) in teams" :key="index">
5959
<th
6060
scope="col"
61-
:class="{ active: isActive(team.player1) }"
61+
:class="{ 'bg-green-300': isActive(team.player1) }"
6262
class="border-l-2 border-slate-300"
6363
>
6464
{{ team.player1.displayName }}
6565
</th>
6666
<th
6767
scope="col"
68-
:class="{ active: isActive(team.player2) }"
68+
:class="{ 'bg-green-300': isActive(team.player2) }"
6969
class="border-l-2 border-slate-300"
7070
>
7171
{{ team.player2.displayName }}
@@ -103,8 +103,3 @@ const teams = computed(() => [props.game.team1, props.game.team2]);
103103
</table>
104104
</div>
105105
</template>
106-
<style lang="postcss" scoped>
107-
.active {
108-
@apply bg-green-300;
109-
}
110-
</style>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pnpm lint
4040

4141
# Generate jOOQ Code
4242
docker run -d \
43-
--rm
43+
--rm \
4444
--name postgres \
4545
-e POSTGRES_USER=jasstracker \
4646
-e POSTGRES_PASSWORD=password \

gradle/libs.versions.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[versions]
2-
kotlin = "2.3.21"
3-
ktor = "3.4.2"
4-
logback = "1.5.24"
5-
shadow = "9.4.1"
6-
kotlinxDatetime = "0.7.1"
7-
kotlinLogging = "8.0.01"
8-
flyway = "12.4.0"
9-
postgresql = "42.7.10"
10-
jooq = "3.21.2"
2+
kotlin = "2.4.0"
3+
ktor = "3.5.1"
4+
logback = "1.5.37"
5+
shadow = "9.4.3"
6+
kotlinxDatetime = "0.8.0"
7+
kotlinLogging = "8.0.4"
8+
flyway = "12.9.0"
9+
postgresql = "42.7.11"
10+
jooq = "3.21.6"
1111
jooqPlugin = "10.2.1"
12-
javaJwt = "4.5.0" # Equal to java-jwt-version from https://github.com/ktorio/ktor/blob/main/gradle/libs.versions.toml
13-
slf4j = "2.0.17"
12+
javaJwt = "4.5.2" # Equal to java-jwt-version from https://github.com/ktorio/ktor/blob/main/gradle/libs.versions.toml
13+
slf4j = "2.0.18"
1414
argon2 = "2.12"
1515

1616
[libraries]

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)