From 559ad4feeb21118542acf2a6bdbe0254b8fb4464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Du=C5=BCy?= <91994767+alduzy@users.noreply.github.com> Date: Mon, 29 Jul 2024 16:54:22 +0200 Subject: [PATCH] fix: removed duplicated modules from metro config (#2264) ## Description This PR removes duplicated `react-native-reanimated` modules from metro config files. ## Checklist - [x] Ensured that CI passes --- Example/metro.config.js | 1 - TVOSExample/metro.config.js | 1 - 2 files changed, 2 deletions(-) diff --git a/Example/metro.config.js b/Example/metro.config.js index 6ee25dfdc9..a8061ff84f 100644 --- a/Example/metro.config.js +++ b/Example/metro.config.js @@ -16,7 +16,6 @@ const modules = [ 'react-native-reanimated', 'react-native-safe-area-context', 'react-native-gesture-handler', - 'react-native-reanimated', ...Object.keys(pack.peerDependencies), ]; diff --git a/TVOSExample/metro.config.js b/TVOSExample/metro.config.js index 6e5e391e81..8e516bde23 100644 --- a/TVOSExample/metro.config.js +++ b/TVOSExample/metro.config.js @@ -16,7 +16,6 @@ const modules = [ 'react-native-reanimated', 'react-native-safe-area-context', 'react-native-gesture-handler', - 'react-native-reanimated', ...Object.keys(pack.peerDependencies), ];