From 366557d6eeb224b68074a515fabd34f08c7f01d2 Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Mon, 22 Apr 2024 03:37:07 -0700 Subject: [PATCH] Fix @react-native/oss-library-example package.json#exports Summary: Fix `package.json#exports` main entry point in `react-native/oss-library-example` (which is actually at `packages/react-native-test-library`), to fix a Metro resolver warning on building RN-tester. Changelog: [Internal] (This package is not published) Differential Revision: D56414480 --- packages/react-native-test-library/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-test-library/package.json b/packages/react-native-test-library/package.json index 570f625463fc24..885ba0144fa9c3 100644 --- a/packages/react-native-test-library/package.json +++ b/packages/react-native-test-library/package.json @@ -12,7 +12,7 @@ }, "main": "./index.js", "exports": { - "./": "./index.js", + ".": "./index.js", "./package.json": "./package.json" }, "scripts": {