From ccde80f5dc9caca032eee35cc393296ae26e97a0 Mon Sep 17 00:00:00 2001 From: jdivock-stripe Date: Thu, 10 Mar 2022 08:12:35 -0800 Subject: [PATCH] clean target and bootstrap from scratch (#132) --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index dfc02d46..3a13b95c 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,8 @@ "release": "release-it", "example": "yarn --cwd example", "pods": "cd example && pod-install --quiet", - "bootstrap": "yarn example && yarn && yarn pods", + "clean": "rm -rf node_modules && rm -rf example/node_modules && rm -rf example/ios/Pods", + "bootstrap": "yarn clean && yarn example && yarn && yarn pods", "example:build:android:release": "cd example/android && ./gradlew assembleRelease ; cd -", "e2e:build:android": "detox build --configuration android", "e2e:build:ios": "detox build --configuration ios",