From 73d0c71f41162d406a8fcc9722939fdf1cd8769d Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Wed, 10 May 2023 07:23:20 +0200 Subject: [PATCH] package.json: Pin down versions of @patternfly/react-{styles,icons} These are already installed as dependencies, and we do the same in other Cockpit projects. The latest react-styles version became incompatible with the react-core version, causing a build failure. --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 53526a0..9f11890 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,8 @@ "dependencies": { "@patternfly/patternfly": "5.0.0-alpha.40", "@patternfly/react-core": "5.0.0-alpha.72", + "@patternfly/react-styles": "5.0.0-alpha.7", + "@patternfly/react-icons": "5.0.0-alpha.10", "react": "17.0.2", "react-dom": "17.0.2" }