From 092886fb631d70815215415d67ff9691eb3d09cf Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Sun, 10 Nov 2024 10:53:40 +0900 Subject: [PATCH 1/2] fix: ios ci --- package.json | 2 +- react-native.config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 17b336a..29bb738 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "!android/**/build/*" ], "scripts": { - "ios": "react-native run-ios --project-path \"./example/ios\"", + "ios": "react-native run-ios", "android": "react-native run-android --root example", "windows": "cd example && react-native run-windows", "start": "react-native start", diff --git a/react-native.config.js b/react-native.config.js index 1ebe230..b568461 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -2,7 +2,7 @@ const project = (() => { const fs = require('fs'); const path = require('path'); try { - const { configureProjects } = require('react-native-test-app'); + const {configureProjects} = require('react-native-test-app'); return configureProjects({ android: { @@ -42,5 +42,5 @@ module.exports = { }, }, }, - ...(project ? { project } : undefined), + ...(project ? {project} : undefined), }; From cc14efe30dc0664ec01ece3fb6a3fb05eb081762 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Sun, 10 Nov 2024 11:00:19 +0900 Subject: [PATCH 2/2] fix: ios ci --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e02c7f..353269a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,7 @@ jobs: - name: Install Podfiles run: cd example && npx pod-install - name: Build example app - run: yarn ios + run: yarn ios --no-packager # windows: # runs-on: windows-latest # strategy: