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: 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), };