You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/commands/releaseCommand/index.js
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ program.command('release')
7
7
.description('Deploys a new CodePush update for a target binary app.\nAfter creating the CodePush bundle, it uploads the file and updates the ReleaseHistory information.\n`bundleUploader`, `getReleaseHistory`, and `setReleaseHistory` functions should be implemented in the config file.')
8
8
.requiredOption('-b, --binary-version <string>','(Required) The target binary version')
9
9
.requiredOption('-v, --app-version <string>','(Required) The app version to be released. It must be greater than the binary version.')
10
+
.addOption(newOption('-f, --framework <type>','framework type (expo)').choices(['expo']))
* @param sourcemapOutput {string} Path to output sourcemap file (Warning: if sourcemapOutput points to the outputPath, the sourcemap will be included in the CodePush bundle and increase the deployment size)
0 commit comments