From 650be82950d0ff5188b592def560013038274458 Mon Sep 17 00:00:00 2001 From: Jakub Sys <32591413+MrRefactor@users.noreply.github.com> Date: Thu, 7 Nov 2024 12:05:53 +0100 Subject: [PATCH] chore(scripts): Fix bootstrap scripts (#903) --- example/package.json | 3 ++- package.json | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/package.json b/example/package.json index b827a6c6..3f8221d3 100644 --- a/example/package.json +++ b/example/package.json @@ -12,7 +12,8 @@ "mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\"", "start": "react-native start", "test": "jest", - "visionos": "react-native run-visionos" + "visionos": "react-native run-visionos", + "pods": "pod-install --quiet" }, "dependencies": { "@callstack/react-native-visionos": "^0.76.0", diff --git a/package.json b/package.json index 3e37ac41..0d6d8aab 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,6 @@ "example": "yarn --cwd example", "bootstrap": "yarn example && yarn && yarn example pods", "bootstrap-no-pods": "yarn example && yarn", - "bootstrap-fabric": "yarn example && yarn && yarn example pods-fabric", "test:e2e:android": "bash ./scripts/run-maestro-tests.sh android", "run-example-android": "cd example;yarn build:android;react-native run-android --mode \"Release\" --appId com.pagerviewexample", "run-example-ios": "cd example;react-native run-ios --mode \"Release\" --simulator \"iPhone 13 (15.2)\"",