-
Notifications
You must be signed in to change notification settings - Fork 2
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: add support for multi-region param #93
feature: add support for multi-region param #93
Conversation
looks good, don't forget to add region to app:deploy |
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.
Looks good, few minor mistakes and names. YALLA BALAGAN
src/commands/app/deploy.ts
Outdated
const { directoryPath, appId, appVersionId, region: strRegion, force } = flags; | ||
const region = getRegionFromString(strRegion); |
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.
Can also simplify things by getting rid of redundant const regionStr
const { directoryPath, appId, appVersionId, region: strRegion, force } = flags; | |
const region = getRegionFromString(strRegion); | |
const { directoryPath, appId, appVersionId, force } = flags; | |
const region = getRegionFromString(flags?.region); |
…multi_region_param # Conflicts: # package.json
…multi_region_param
* feature: add support for multi region param * feature: add support for multi region param * feature: update version * feature: [beta] added interactive * feature: [beta] added interactive * feature: [beta] added interactive * feature: [beta] added interactive * feature: [beta] added interactive * feature: fix name of type * feature: fix version * feature: fix version
https://monday.monday.com/boards/3670992828/views/126769350/pulses/6667531207
add support for multi-region param