From 62cc8afbc0154810b82654e52d09488b949e0636 Mon Sep 17 00:00:00 2001 From: Alem Tuzlak Date: Mon, 1 Jun 2026 13:14:00 +0200 Subject: [PATCH] fix: point repository url at code-forge-io to match build provenance npm rejected the 6.2.1 publish (E422) because the package's repository.url still referenced the old forge-42 org while OIDC build provenance is stamped with code-forge-io (the repo's current location): Failed to validate repository information: package.json repository.url is forge-42/... expected to match code-forge-io/... from provenance Update repository.url, bugs.url and readme in both the published package and the root manifest. homepage (forge42.dev docs domain) is left as-is. --- package.json | 6 +++--- packages/react-router-devtools/package.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 0fd5d50..8bfc539 100644 --- a/package.json +++ b/package.json @@ -18,13 +18,13 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/forge-42/react-router-devtools.git" + "url": "git+https://github.com/code-forge-io/react-router-devtools.git" }, "bugs": { - "url": "https://github.com/forge-42/react-router-devtools/issues" + "url": "https://github.com/code-forge-io/react-router-devtools/issues" }, "homepage": "https://react-router-devtools.forge42.dev/", - "readme": "https://github.com/forge-42/react-router-devtools#readme", + "readme": "https://github.com/code-forge-io/react-router-devtools#readme", "scripts": { "build": "nx affected --targets=build --exclude=test-apps/**,docs/**", "build:all": "nx run-many --targets=build --exclude=test-apps/**,docs/**", diff --git a/packages/react-router-devtools/package.json b/packages/react-router-devtools/package.json index 208a7d5..e0ea5e7 100644 --- a/packages/react-router-devtools/package.json +++ b/packages/react-router-devtools/package.json @@ -58,13 +58,13 @@ "files": ["dist"], "repository": { "type": "git", - "url": "git+https://github.com/forge-42/react-router-devtools.git" + "url": "git+https://github.com/code-forge-io/react-router-devtools.git" }, "bugs": { - "url": "https://github.com/forge-42/react-router-devtools/issues" + "url": "https://github.com/code-forge-io/react-router-devtools/issues" }, "homepage": "https://react-router-devtools.forge42.dev/", - "readme": "https://github.com/forge-42/react-router-devtools#readme", + "readme": "https://github.com/code-forge-io/react-router-devtools#readme", "scripts": { "prepublishOnly": "npm run build", "react-router-vite": "npm run dev -w test-apps/react-router-vite",