From 330f417f30b32cddcaf819d5442d3ef0255b5726 Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Fri, 4 Sep 2026 16:18:47 +0100 Subject: [PATCH] ci: mirror every published package to GitHub Packages document-cli and document-mcp were tracked in release-republish.json for their npm alias lists but carried no githubPackages entry, so neither ever got a GitHub Packages mirror. document-compute.js, epub-codec, and excel-number-format were absent from the file entirely -- each joined the monorepo without a prior standalone repository to port a mapping from, and nobody backfilled one. All five are real, published (non-private) packages; this adds a githubPackages entry for each, matching the same-name convention every other package already uses. --- .github/release-republish.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/release-republish.json b/.github/release-republish.json index b0217f3a3..22c19c7e4 100644 --- a/.github/release-republish.json +++ b/.github/release-republish.json @@ -12,9 +12,17 @@ "aliases": [] }, "document-cli": { + "githubPackages": "document-cli", "aliases": ["doculi"] }, - "document-mcp": {}, + "document-compute.js": { + "githubPackages": "document-compute.js", + "aliases": [] + }, + "document-mcp": { + "githubPackages": "document-mcp", + "aliases": [] + }, "document-outline.js": { "githubPackages": "document-outline.js", "aliases": [] @@ -33,6 +41,14 @@ "githubPackages": "documents.js", "aliases": ["js.documents"] }, + "epub-codec": { + "githubPackages": "epub-codec", + "aliases": [] + }, + "excel-number-format": { + "githubPackages": "excel-number-format", + "aliases": [] + }, "markdown-codec": { "githubPackages": "markdown-codec", "aliases": ["mrkdwn.js"]