From a48b9691f05618328c8a9f2336d1109b01a9d79c Mon Sep 17 00:00:00 2001 From: Corie Watson Date: Fri, 21 Aug 2026 12:05:18 +0100 Subject: [PATCH] fix(bq-scripts): use full git URL in repository.url npm publish --provenance validates that package.json repository.url resolves to the GitHub repo building the package. Both BigQuery script packages declared a bare "github.com/firebase/extensions.git", which npm cannot parse into https://github.com/firebase/extensions, so provenance generation fails. Prefix both with "git+https://" to match the sibling firestore-bigquery-change-tracker package, which already publishes with provenance successfully. --- firestore-bigquery-export/scripts/gen-schema-view/package.json | 2 +- firestore-bigquery-export/scripts/import/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firestore-bigquery-export/scripts/gen-schema-view/package.json b/firestore-bigquery-export/scripts/gen-schema-view/package.json index d9eafd182..f4f3ac700 100644 --- a/firestore-bigquery-export/scripts/gen-schema-view/package.json +++ b/firestore-bigquery-export/scripts/gen-schema-view/package.json @@ -5,7 +5,7 @@ "main": "./lib/index.js", "repository": { "type": "git", - "url": "github.com/firebase/extensions.git", + "url": "git+https://github.com/firebase/extensions.git", "directory": "firestore-bigquery-export/scripts/gen-schema-view" }, "scripts": { diff --git a/firestore-bigquery-export/scripts/import/package.json b/firestore-bigquery-export/scripts/import/package.json index bdafc5ef2..bbf874c47 100644 --- a/firestore-bigquery-export/scripts/import/package.json +++ b/firestore-bigquery-export/scripts/import/package.json @@ -5,7 +5,7 @@ "main": "./lib/index.js", "repository": { "type": "git", - "url": "github.com/firebase/extensions.git", + "url": "git+https://github.com/firebase/extensions.git", "directory": "firestore-bigquery-export/scripts/import" }, "scripts": {