-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/demrum 440 dsyms list command #61
Feature/demrum 440 dsyms list command #61
Conversation
debug?: boolean; | ||
} | ||
|
||
iOSCommand |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this block needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which block? I'm seeing code that doesn't line up with a block above your comments, maybe the branch got out of sync with what's shown here(?).
src/commands/ios.ts
Outdated
} | ||
}); | ||
|
||
iOSCommand.parse(process.argv); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think this should be here. If you look in index.ts file, it has the program defined, adds the different commands and parses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed; thanks.
src/utils/iOSInputValidations.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These look similar to whats in androidInputValidations. Perhaps we could consolidate it and make them generically useable for both android and iOS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. I've added this update to the previous PR so once that is merged and I rebase this branch then we will see the change here as well.
50d7924
to
c4e0895
Compare
src/commands/ios.ts
Outdated
iOSCommand | ||
.command('upload') | ||
.showHelpAfterError(true) | ||
.usage('--file <path>') | ||
.description(iOSUploadDescription) | ||
.summary('Upload a dSYMs .zip file to the symbolication service') | ||
.requiredOption('--file <path>', 'Path to the dSYMs .zip file') | ||
.option('--debug', 'Enable debug logs') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it intentional to remove --debug
option from Upload right now? If so, you'd want to keep UploadiOSOptions
in-sync
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. I think I want to keep that actually.
Add command to request list of dSYMs from the cloud API.