From 5a41a568624bae71c03d35726bb3fc4084e0dd80 Mon Sep 17 00:00:00 2001 From: Emily Marigold Klassen Date: Fri, 12 Mar 2021 06:23:13 -0800 Subject: [PATCH] Add missing metadata to package.jsons (#2487) Co-authored-by: Emily Marigold Klassen --- packages/pg-connection-string/package.json | 3 ++- packages/pg-cursor/package.json | 3 ++- packages/pg-pool/package.json | 3 ++- packages/pg-protocol/package.json | 5 +++++ packages/pg-query-stream/package.json | 3 ++- packages/pg/package.json | 3 ++- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/packages/pg-connection-string/package.json b/packages/pg-connection-string/package.json index e8ea95a1..9eb2191e 100644 --- a/packages/pg-connection-string/package.json +++ b/packages/pg-connection-string/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "git://github.com/brianc/node-postgres.git" + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg-connection-string" }, "keywords": [ "pg", diff --git a/packages/pg-cursor/package.json b/packages/pg-cursor/package.json index 4da33556..2d259580 100644 --- a/packages/pg-cursor/package.json +++ b/packages/pg-cursor/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "git://github.com/brianc/node-postgres.git" + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg-cursor" }, "author": "Brian M. Carlson", "license": "MIT", diff --git a/packages/pg-pool/package.json b/packages/pg-pool/package.json index 19ae8177..1488cd40 100644 --- a/packages/pg-pool/package.json +++ b/packages/pg-pool/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "git://github.com/brianc/node-postgres.git" + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg-pool" }, "keywords": [ "pg", diff --git a/packages/pg-protocol/package.json b/packages/pg-protocol/package.json index 05f74ae1..8f196d4d 100644 --- a/packages/pg-protocol/package.json +++ b/packages/pg-protocol/package.json @@ -22,6 +22,11 @@ "prepublish": "yarn build", "pretest": "yarn build" }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg-protocol" + }, "files": [ "/dist/*{js,ts,map}", "/src" diff --git a/packages/pg-query-stream/package.json b/packages/pg-query-stream/package.json index 0b301226..22532f93 100644 --- a/packages/pg-query-stream/package.json +++ b/packages/pg-query-stream/package.json @@ -9,7 +9,8 @@ }, "repository": { "type": "git", - "url": "git://github.com/brianc/node-postgres.git" + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg-query-stream" }, "keywords": [ "postgres", diff --git a/packages/pg/package.json b/packages/pg/package.json index 32439f61..b4cafdac 100644 --- a/packages/pg/package.json +++ b/packages/pg/package.json @@ -14,7 +14,8 @@ "homepage": "https://github.com/brianc/node-postgres", "repository": { "type": "git", - "url": "git://github.com/brianc/node-postgres.git" + "url": "git://github.com/brianc/node-postgres.git", + "directory": "packages/pg" }, "author": "Brian Carlson ", "main": "./lib",