yaver-cli 1.99.94 → 1.99.95
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/package.json +1 -1
- package/sdk-manifest.json +1 -1
- package/src/postinstall.js +9 -0
package/package.json
CHANGED
package/sdk-manifest.json
CHANGED
package/src/postinstall.js
CHANGED
|
@@ -261,6 +261,15 @@ async function main() {
|
|
|
261
261
|
log(`Skipping mobile bootstrap: ${error.message}`);
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
if (!envEnabled("YAVER_SKIP_POSTINSTALL_REMOTE_RUNTIME")) {
|
|
265
|
+
try {
|
|
266
|
+
await runAgentCommand(["install", "remote-runtime"], { quiet: true });
|
|
267
|
+
log("Provisioned native remote-runtime host tools (Android everywhere; macOS host helpers where supported).");
|
|
268
|
+
} catch (error) {
|
|
269
|
+
log(`Skipping remote-runtime bootstrap: ${error.message}`);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
264
273
|
if (!envEnabled("YAVER_SKIP_POSTINSTALL_MOBILE_TOOLS")) {
|
|
265
274
|
installMissingMobileTools();
|
|
266
275
|
}
|