From c76441d1ce9b2b03b4d413171c50bea2a59ea6f5 Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Wed, 18 Mar 2020 20:17:28 +0000 Subject: [PATCH] Fix repository path for graphql-extensions (#3881) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix repository path for graphql-extensions Avoids links with 404 on npm and yarn websites * Fix package path 🤦‍♂️ --- packages/graphql-extensions/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/graphql-extensions/package.json b/packages/graphql-extensions/package.json index b5d00026ca5..5f472ba16ad 100644 --- a/packages/graphql-extensions/package.json +++ b/packages/graphql-extensions/package.json @@ -6,7 +6,8 @@ "types": "./dist/index.d.ts", "repository": { "type": "git", - "url": "apollographql/graphql-extensions" + "url": "apollographql/apollo-server", + "directory": "packages/graphql-extensions" }, "author": "Martijn Walraven ", "license": "MIT",