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