From 45bce5d352ddcf95c76675eced5a1d1d09d57399 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Fri, 15 Mar 2019 19:40:39 -0700 Subject: [PATCH] Remove unnecessary dependency in NavigationPlayground - node_modules is pulled in when using file://../../ in yarn --- .../react-navigation/examples/NavigationPlayground/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-navigation/examples/NavigationPlayground/package.json b/packages/react-navigation/examples/NavigationPlayground/package.json index 8c932871..a8937e12 100644 --- a/packages/react-navigation/examples/NavigationPlayground/package.json +++ b/packages/react-navigation/examples/NavigationPlayground/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "postinstall": "patch-package && rm -rf node_modules/react-navigation/node_modules/react-native && rm -rf node_modules/react-navigation/node_modules/@types && rm -rf node_modules/react-navigation/node_modules/examples && rm -rf node_modules/react-navigation/node_modules/react-native-gesture-handler", + "postinstall": "patch-package && rm -rf node_modules/react-navigation/node_modules/react-native && rm -rf node_modules/react-navigation/node_modules/@types && rm -rf node_modules/react-navigation/node_modules/examples && rm -rf node_modules/react-navigation/node_modules/react-native-gesture-handler && rm -rf node_modules/react-navigation/node_modules/react", "start": "node node_modules/react-native/local-cli/cli.js start", "test": "jest && tsc", "tsc": "tsc"