From 401fe83eeeee84af170d81bc2abd25ecd829e70b Mon Sep 17 00:00:00 2001 From: Harri Lehtola Date: Mon, 16 Sep 2024 08:29:41 +0300 Subject: [PATCH] fix: Move tslib from devDependencies to dependencies in Feast UI tslib is a runtime dependency, so it should be in dependencies. This ensures the specified version is installed also when the package is used as a module. Signed-off-by: Harri Lehtola --- ui/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/package.json b/ui/package.json index cd80859aa15..3a609f3c83b 100644 --- a/ui/package.json +++ b/ui/package.json @@ -47,6 +47,7 @@ "react-query": "^3.34.12", "react-router-dom": "6", "react-scripts": "^5.0.0", + "tslib": "^2.3.1", "use-query-params": "^1.2.3", "zod": "^3.11.6" }, @@ -105,7 +106,6 @@ "rollup-plugin-svg": "^2.0.0", "rollup-plugin-svgo": "^1.1.0", "rollup-plugin-terser": "^7.0.2", - "tslib": "^2.3.1", "typescript": "^4.4.2" }, "description": "Web UI for the [Feast Feature Store](https://feast.dev/)",