diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2025-03-21 19:38:11 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-21 19:38:11 +0900 |
| commit | e61263cff08f318ef21932ea3a64a1b9c19f160a (patch) | |
| tree | 2b69b684643d0a79bff73dcc791f32550f76e6a1 /packages/backend/src | |
| parent | Bump version to 2025.3.2-beta.8 (diff) | |
| download | sharkey-e61263cff08f318ef21932ea3a64a1b9c19f160a.tar.gz sharkey-e61263cff08f318ef21932ea3a64a1b9c19f160a.tar.bz2 sharkey-e61263cff08f318ef21932ea3a64a1b9c19f160a.zip | |
fix(deps): update [backend] update dependencies (#15596)
* fix(deps): update [backend] update dependencies
* fix(backend/types): ensure to use nodejs-provided stream api
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/misc/FileWriterStream.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/src/misc/FileWriterStream.ts b/packages/backend/src/misc/FileWriterStream.ts index 367a8eb560..27c67cb5df 100644 --- a/packages/backend/src/misc/FileWriterStream.ts +++ b/packages/backend/src/misc/FileWriterStream.ts @@ -4,6 +4,7 @@ */ import * as fs from 'node:fs/promises'; +import { WritableStream } from 'node:stream/web'; import type { PathLike } from 'node:fs'; /** |