🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@limrun/cli

Package Overview
Dependencies
Maintainers
4
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@limrun/cli - npm Package Compare versions

Comparing version
0.8.2
to
0.8.3
+1
-1
package.json
{
"name": "@limrun/cli",
"version": "0.8.2",
"version": "0.8.3",
"description": "Use remote XCode, iOS Simulator, Android Emulator and more to build and test apps from Linux, Windows or macOS.",

@@ -5,0 +5,0 @@ "bin": {

@@ -71,2 +71,14 @@ ---

For Expo dev-client builds, do not use plain `exp://`; Expo Go may intercept it. Use the app scheme: `expo.scheme` from `app.json` when present, otherwise Expo dev-client's generated default `exp+{expo.slug}`.
When the Metro server runs locally, expose it with `lim ios reverse` first. Use the simulator-facing host printed by that command in both `REACT_NATIVE_PACKAGER_HOSTNAME` and the encoded dev-client URL.
```bash
# app.json: "scheme": "myapp" or fallback "slug": "myapp" -> exp+myapp
lim ios reverse 57090:8081 --id <ios-instance-id>
REACT_NATIVE_PACKAGER_HOSTNAME=<reverse-host> npx expo start --dev-client --host lan --port 8081
lim xcode build . --configuration Debug \
--dev-server-url 'myapp://expo-development-client/?url=http%3A%2F%2F<reverse-host>%3A57090'
```
Every successful build will automatically re-install the app in iOS Simulator and re-launch it.

@@ -73,0 +85,0 @@