update JS deps

This commit is contained in:
imperosol
2026-06-24 09:28:12 +02:00
parent 5c87bcf4b5
commit e7ef3d0020
6 changed files with 1009 additions and 1185 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ repos:
rev: v0.6.1
hooks:
- id: biome-check
additional_dependencies: ["@biomejs/biome@2.4.6"]
additional_dependencies: ["@biomejs/biome@2.5.1"]
- repo: https://github.com/rtts/djhtml
rev: 3.0.11
hooks:
+1 -1
View File
@@ -17,7 +17,7 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"preset": "recommended",
"style": {
"useNamingConvention": "error"
},
-1
View File
@@ -55,7 +55,6 @@ declare interface NDEFRecordInit {
// biome-ignore lint/style/useNamingConvention: this is the official API name
declare type NDEFMessageSource = string | BufferSource | NDEFMessageInit;
// biome-ignore lint/correctness/noUnusedVariables: this is the official definition
interface Window {
// biome-ignore lint/style/useNamingConvention: this is the official API name
NDEFReader: NDEFReader;
+995 -1170
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -24,10 +24,10 @@
"#com:*": "./com/static/bundled/*"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@biomejs/biome": "^2.4.16",
"@hey-api/openapi-ts": "^0.98.1",
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@biomejs/biome": "^2.5.1",
"@hey-api/openapi-ts": "^0.99.0",
"@types/alpinejs": "^3.13.11",
"@types/alpinejs__sort": "^3.13.0",
"@types/cytoscape-cxtmenu": "^3.4.5",
@@ -35,18 +35,18 @@
"@types/js-cookie": "^3.0.6",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "^6.0.3",
"vite": "^8.0.16"
"vite": "^8.1.0"
},
"dependencies": {
"@alpinejs/sort": "^3.15.12",
"@arendjr/text-clipper": "npm:@jsr/arendjr__text-clipper@^3.0.0",
"@floating-ui/dom": "^1.7.6",
"@fortawesome/fontawesome-free": "^7.2.0",
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/icalendar": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@sentry/browser": "^10.56.0",
"@fullcalendar/core": "^6.1.21",
"@fullcalendar/daygrid": "^6.1.21",
"@fullcalendar/icalendar": "^6.1.21",
"@fullcalendar/list": "^6.1.21",
"@sentry/browser": "^10.60.0",
"@zip.js/zip.js": "^2.8.26",
"3d-force-graph": "^1.80.0",
"alpinejs": "^3.15.12",
+2 -2
View File
@@ -63,7 +63,7 @@ class PictureWithIdentifications {
if (this.identificationsLoading) {
return; // The users are already being fetched.
}
if (!!this.identifications && !options?.forceReload) {
if (this.identifications && !options?.forceReload) {
// The users are already fetched
// and the user does not want to force the reload
return;
@@ -82,7 +82,7 @@ class PictureWithIdentifications {
if (this.moderationLoading) {
return; // The moderation requests are already being fetched.
}
if (!!this.moderationRequests && !options?.forceReload) {
if (this.moderationRequests && !options?.forceReload) {
// The moderation requests are already fetched
// and the user does not want to force the reload
return;