From 2bab12699a55bac25a3a00c987725af51d1c0109 Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Thu, 18 Jun 2026 09:09:09 -0700 Subject: [PATCH] Add repository metadata to `@react-native/core-cli-utils` Summary: This package is published to npm, despite being under `private` - so I missed adding `repository` metadata to it as requried by trusted publish. Changelog: [Internal] Reviewed By: cortinico Differential Revision: D109031681 --- private/core-cli-utils/package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/private/core-cli-utils/package.json b/private/core-cli-utils/package.json index 725bf2650b5e..c9e27b463674 100644 --- a/private/core-cli-utils/package.json +++ b/private/core-cli-utils/package.json @@ -3,6 +3,11 @@ "version": "0.0.0", "description": "Reference implementation of React Native CLI tooling", "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/react/react-native.git", + "directory": "private/core-cli-utils" + }, "main": "./src/index.js", "exports": { ".": "./src/index.js",