From 1b679c4a492a1b7fe699181a5302352a81a50cc4 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Tue, 17 Jan 2023 11:13:28 +0100 Subject: [PATCH] fix: correctly set repository in package.json files --- packages/build-info/package.json | 6 +++++- packages/headers-parser/package.json | 3 ++- packages/js-client/package.json | 3 ++- packages/nock-udp/package.json | 5 +++++ packages/redirect-parser/package.json | 3 ++- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/packages/build-info/package.json b/packages/build-info/package.json index e7b1eea1d5..d22892e086 100644 --- a/packages/build-info/package.json +++ b/packages/build-info/package.json @@ -24,7 +24,11 @@ }, "keywords": [], "license": "MIT", - "repository": "netlify/build-info", + "repository": { + "type": "git", + "url": "https://github.com/netlify/build.git", + "directory": "packages/build-info" + }, "bugs": { "url": "https://github.com/netlify/build/issues" }, diff --git a/packages/headers-parser/package.json b/packages/headers-parser/package.json index 5511ac7a21..b469c3f66f 100644 --- a/packages/headers-parser/package.json +++ b/packages/headers-parser/package.json @@ -40,7 +40,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/netlify/build.git" + "url": "https://github.com/netlify/build.git", + "directory": "packages/headers-parser" }, "bugs": { "url": "https://github.com/netlify/build/issues" diff --git a/packages/js-client/package.json b/packages/js-client/package.json index c1fc3cc5bb..98d3f1dbb0 100644 --- a/packages/js-client/package.json +++ b/packages/js-client/package.json @@ -28,7 +28,8 @@ "homepage": "https://github.com/netlify/build", "repository": { "type": "git", - "url": "https://github.com/netlify/build.git" + "url": "https://github.com/netlify/build.git", + "directory": "packages/js-client" }, "bugs": { "url": "https://github.com/netlify/build/issues" diff --git a/packages/nock-udp/package.json b/packages/nock-udp/package.json index c80c556fa0..918bd8a7fc 100644 --- a/packages/nock-udp/package.json +++ b/packages/nock-udp/package.json @@ -18,6 +18,11 @@ }, "keywords": [], "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/netlify/build.git", + "directory": "packages/nock-udp" + }, "bugs": { "url": "https://github.com/netlify/build/issues" }, diff --git a/packages/redirect-parser/package.json b/packages/redirect-parser/package.json index 97a54964be..f64614823a 100644 --- a/packages/redirect-parser/package.json +++ b/packages/redirect-parser/package.json @@ -40,7 +40,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/netlify/build.git" + "url": "https://github.com/netlify/build.git", + "directory": "packages/redirect-parser" }, "bugs": { "url": "https://github.com/netlify/build/issues"