From 987325e78754deeee5816f5c237e8729293e848b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Fri, 25 Mar 2022 17:24:49 +0100 Subject: [PATCH] Adding RXJS as a dependency in iframe-api-typings Because some methods are returning Subjects, we need to import rxjs as a dependency of the package to have full typing available. --- front/packages/iframe-api-typings/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/packages/iframe-api-typings/package.json b/front/packages/iframe-api-typings/package.json index fa35851c..d6874921 100644 --- a/front/packages/iframe-api-typings/package.json +++ b/front/packages/iframe-api-typings/package.json @@ -9,5 +9,8 @@ "license": "MIT", "publishConfig": { "access": "public" + }, + "dependencies": { + "rxjs": "^6.6.3" } }