From 048a6a3afd73ac84fc83e6c0f3fc1eb214b99f7e Mon Sep 17 00:00:00 2001 From: Jakob Schlonsok Date: Fri, 8 Mar 2024 06:04:56 +0100 Subject: [PATCH] fix: Adjust peer deps in example and syncpack --- .syncpackrc | 2 +- packages/example-docs/package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.syncpackrc b/.syncpackrc index 5027352..f018c85 100644 --- a/.syncpackrc +++ b/.syncpackrc @@ -18,7 +18,7 @@ "packages": ["**"], "dependencies": ["@docusaurus/**"], "dependencyTypes": ["peer"], - "pinVersion": "^2.0.0" + "pinVersion": "^2.0.0 || ~3.1" }, { "label": "All dependencies should follow the versions of the search plugin", diff --git a/packages/example-docs/package.json b/packages/example-docs/package.json index df05514..09da952 100644 --- a/packages/example-docs/package.json +++ b/packages/example-docs/package.json @@ -1,4 +1,4 @@ -{ + { "name": "example-docs", "private": true, "scripts": { @@ -12,8 +12,8 @@ "clsx": "^1.1.1" }, "peerDependencies": { - "@docusaurus/core": "^2.0.0", - "@docusaurus/preset-classic": "^2.0.0", + "@docusaurus/core": "^2.0.0 || ~3.1", + "@docusaurus/preset-classic": "^2.0.0 || ~3.1", "react": "^17.0.0", "react-dom": "^17.0.0" },