eas-cli 19.0.4 → 19.0.5

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.
@@ -34,10 +34,15 @@ async function getManagedApplicationTargetEntitlementsAsync(projectDir, env, vcs
34
34
  scope.setTag('build_id', process.env.EAS_BUILD_ID);
35
35
  }
36
36
  scope.setTag('config_resolution', 'ios_entitlements_introspection');
37
- scope.setExtra('message', 'iOS entitlements config fallback');
38
- scope.setExtra('stdout', error.stdout);
39
- scope.setExtra('stderr', error.stderr);
40
- sentry_1.default.captureException(error);
37
+ scope.setExtra('expo_config_command_error', JSON.stringify({
38
+ message: error.message,
39
+ output: error.output,
40
+ signal: error.signal,
41
+ status: error.status,
42
+ stderr: error.stderr,
43
+ stdout: error.stdout,
44
+ }));
45
+ sentry_1.default.captureMessage('iOS entitlements config fallback', 'error');
41
46
  });
42
47
  }
43
48
  catch {