sentry-cli
sentry-cli copied to clipboard
JS layer for sentry CLI mutes stdout from command execution
Environment
Node 16.17
Steps to Reproduce
Given the following code
const SentryCli = require('@sentry/cli')
const cli = new SentryCli()
await cli.releases.new("1.0")
await cli.releases.setCommits(release, { repo: "myrepo", commit:"000000000000", previousCommit: "0000000000000",})
await cli.releases.finalize(release)
Expected Result
There should be a display of the underlying sentry cli output, or an option to activate this
Actual Result
No output, in case something goes wrong we don't get any detail.