mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
chore(server,web,docs) bulk bump of dependencies with vulnerabilities (#4312)
* chore: bump node version to 20.8 * chore(server,web) upgrade vulnerable dependencies * fix: revert node change * fix: commander version * fix: set country to null if undefined * fix: set docs module resolution * fix(web): correct return type of interval * fix(docs): set node in tsconfig --------- Co-authored-by: Jonathan Jogenfors <jonathan@jogenfors.se> Co-authored-by: debricked[bot] <47180885+debricked[bot]@users.noreply.github.com>
This commit is contained in:
parent
2370c9ef41
commit
43f4dac3ad
8 changed files with 16534 additions and 13240 deletions
|
|
@ -3,7 +3,7 @@
|
|||
import { AllJobStatusResponseDto, api } from '@api';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
|
||||
let timer: NodeJS.Timer;
|
||||
let timer: ReturnType<typeof setInterval>;
|
||||
|
||||
let jobs: AllJobStatusResponseDto;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
import type { PageData } from './$types';
|
||||
|
||||
export let data: PageData;
|
||||
let setIntervalHandler: NodeJS.Timer;
|
||||
let setIntervalHandler: ReturnType<typeof setInterval>;
|
||||
|
||||
onMount(async () => {
|
||||
setIntervalHandler = setInterval(async () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue