chore: Update server dependencies

This commit is contained in:
Maksim Eltyshev
2026-02-04 12:53:15 +01:00
parent 8df5a111bf
commit 450bd875c1
12 changed files with 1677 additions and 1656 deletions
@@ -22,7 +22,7 @@ class LocalFileManager {
const dirPath = buildPath(dir);
const filePath = path.join(dirPath, base);
await fs.promises.mkdir(dirPath);
await fs.promises.mkdir(dirPath, { recursive: true });
await fse.move(sourceFilePath, filePath);
return filePath;