From 62eb4b6d2bf7c3068ba92f30259cbf89f47b8ad6 Mon Sep 17 00:00:00 2001 From: Erik Michelson Date: Thu, 12 Sep 2024 15:40:44 +0200 Subject: [PATCH] fix(packages): backend was missing uuid package Due to failing docker builds it was brought to our attention, that the backend relied on the uuid package without declaring it as dependency. This worked in all development and build scenarios as the frontend declares uuid as dependency already and top-level `yarn install` installs all dependencies from all workspaces. However as the docker build only runs for either the backend or the frontend, this failed. This commit adds the dependency to the backend as well. Signed-off-by: Erik Michelson --- backend/package.json | 2 ++ yarn.lock | 2 ++ 2 files changed, 4 insertions(+) diff --git a/backend/package.json b/backend/package.json index 2b51b0d56..56e3af4b5 100644 --- a/backend/package.json +++ b/backend/package.json @@ -76,6 +76,7 @@ "rxjs": "7.8.1", "sqlite3": "5.1.7", "typeorm": "0.3.20", + "uuid": "10.0.0", "ws": "8.17.1", "yjs": "13.6.18" }, @@ -100,6 +101,7 @@ "@types/pg": "8.11.0", "@types/source-map-support": "0.5.10", "@types/supertest": "2.0.16", + "@types/uuid": "9.0.8", "@types/ws": "8.5.10", "@typescript-eslint/eslint-plugin": "6.21.0", "@typescript-eslint/parser": "6.21.0", diff --git a/yarn.lock b/yarn.lock index 71f4b9e9a..d2e3a8389 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2531,6 +2531,7 @@ __metadata: "@types/pg": "npm:8.11.0" "@types/source-map-support": "npm:0.5.10" "@types/supertest": "npm:2.0.16" + "@types/uuid": "npm:9.0.8" "@types/ws": "npm:8.5.10" "@typescript-eslint/eslint-plugin": "npm:6.21.0" "@typescript-eslint/parser": "npm:6.21.0" @@ -2581,6 +2582,7 @@ __metadata: tsconfig-paths: "npm:4.2.0" typeorm: "npm:0.3.20" typescript: "npm:5.5.4" + uuid: "npm:10.0.0" ws: "npm:8.17.1" yjs: "npm:13.6.18" languageName: unknown