@absolutejs/absolute 0.20.0-beta.89 → 0.20.0-beta.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/changelog.json +10 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/{dev-6shm8qsn.js → dev-aykeaa7b.js} +1 -1
- package/dist/cli/{expoDevController-n19kb5fr.js → expoDevController-tr63cg78.js} +93 -0
- package/dist/cli/index.js +1 -1
- package/dist/mobile/index.js +94 -1
- package/dist/mobile/index.js.map +3 -3
- package/dist/src/mobile/expoDevController.d.ts +19 -0
- package/package.json +2 -1
|
@@ -74,9 +74,28 @@ export type AbsoluteExpoAndroidReleaseInstallation = {
|
|
|
74
74
|
durationMs: number;
|
|
75
75
|
serial: string;
|
|
76
76
|
};
|
|
77
|
+
export type InstallAbsoluteExpoIosReleaseOptions = {
|
|
78
|
+
capture?: (command: string[]) => {
|
|
79
|
+
exitCode: number;
|
|
80
|
+
stdout: string;
|
|
81
|
+
};
|
|
82
|
+
config: NormalizedAbsoluteMobileConfig;
|
|
83
|
+
executable?: string;
|
|
84
|
+
iosDevice?: string;
|
|
85
|
+
log?: (message: string) => void;
|
|
86
|
+
signal?: AbortSignal;
|
|
87
|
+
spawnProcess?: typeof spawn;
|
|
88
|
+
xcrun?: string;
|
|
89
|
+
};
|
|
90
|
+
export type AbsoluteExpoIosReleaseInstallation = {
|
|
91
|
+
durationMs: number;
|
|
92
|
+
udid: string;
|
|
93
|
+
};
|
|
77
94
|
export declare const absoluteExpoExecutable: (project: string) => Promise<string>;
|
|
78
95
|
export declare const planAbsoluteExpoDevSession: (config: NormalizedAbsoluteMobileConfig, options: PlanAbsoluteExpoDevOptions) => AbsoluteExpoDevPlan;
|
|
79
96
|
export declare const installAbsoluteExpoAndroidRelease: (options: InstallAbsoluteExpoAndroidReleaseOptions) => Promise<AbsoluteExpoAndroidReleaseInstallation>;
|
|
97
|
+
export declare const installAbsoluteExpoIosRelease: (options: InstallAbsoluteExpoIosReleaseOptions) => Promise<AbsoluteExpoIosReleaseInstallation>;
|
|
98
|
+
export declare const parseBootedAbsoluteExpoIosSimulators: (source: string) => string[];
|
|
80
99
|
export declare const startAbsoluteExpoDevSession: (options: StartAbsoluteExpoDevOptions) => Promise<{
|
|
81
100
|
metroPort: number;
|
|
82
101
|
platforms: AbsoluteExpoDevPlatform[];
|
package/package.json
CHANGED
|
@@ -475,6 +475,7 @@
|
|
|
475
475
|
"test:native:expo:android:observability": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID=1 bun test tests/native/expo-android-observability-conformance.test.ts",
|
|
476
476
|
"test:native:expo:android:updates": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPDATES=1 bun test tests/native/expo-android-update-conformance.test.ts",
|
|
477
477
|
"test:native:expo:android:upgrade": "ABSOLUTE_TEST_NATIVE_EXPO_ANDROID_UPGRADE=1 bun test tests/native/expo-android-upgrade-conformance.test.ts",
|
|
478
|
+
"test:native:expo:ios:updates": "ABSOLUTE_TEST_NATIVE_EXPO_IOS_UPDATES=1 bun test tests/native/expo-ios-update-conformance.test.ts",
|
|
478
479
|
"test:native:ios": "bun run test:native:ios:lifecycle && bun run test:native:ios:bundle",
|
|
479
480
|
"test:native:ios:bundle": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-embedded-bundle-conformance.test.ts",
|
|
480
481
|
"test:native:ios:lifecycle": "ABSOLUTE_TEST_NATIVE_IOS=1 bun test tests/native/ios-lifecycle-conformance.test.ts",
|
|
@@ -528,7 +529,7 @@
|
|
|
528
529
|
]
|
|
529
530
|
}
|
|
530
531
|
},
|
|
531
|
-
"version": "0.20.0-beta.
|
|
532
|
+
"version": "0.20.0-beta.90",
|
|
532
533
|
"workspaces": [
|
|
533
534
|
"tests/fixtures/*",
|
|
534
535
|
"tests/fixtures/_packages/*"
|