Fix import statements throughout codebase:
// Old
import SentryCli, {SentryCliReleases} from '@sentry/cli';
// New
import { SentryCli } from '@sentry/cli';
- Update
src/cli.ts and any other files using imports
- Remove usage of
SentryCliReleases type if present
Fix import statements throughout codebase:
src/cli.tsand any other files using importsSentryCliReleasestype if present