From b96d62121aa9f34fcf03c4aac8f6f1d222c1fe19 Mon Sep 17 00:00:00 2001 From: Philipp Adrian <580992+ph101pp@users.noreply.github.com> Date: Thu, 13 Jun 2024 03:08:55 +0900 Subject: [PATCH] @metaplex-foundation/umi: Fix react-native serializers dependency export (#129) * @metaplex-foundation/umi: Fix react-native serializers dependency export Without this, `react-native` projects (like Backpack) can't use the `@metaplex-foundation/umi` package. * move react-native export to top * typo --- packages/umi/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/umi/package.json b/packages/umi/package.json index ab4d3b4..1932068 100644 --- a/packages/umi/package.json +++ b/packages/umi/package.json @@ -14,6 +14,7 @@ "require": "./dist/cjs/index.cjs" }, "./serializers": { + "react-native": "./dist/cjs/serializers.cjs", "types": "./dist/types/serializers.d.ts", "import": "./dist/esm/serializers.mjs", "require": "./dist/cjs/serializers.cjs"