code-push-itspar 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/script/command-parser.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ Optional Parameters:
|
|
|
114
114
|
- `--disabled`: Prevents update from being downloaded (useful for staged rollouts)
|
|
115
115
|
- `--mandatory`: Forces users to accept this update
|
|
116
116
|
- `--noDuplicateReleaseError`: Shows warning instead of error if releasing same content
|
|
117
|
-
- `--rollout`: Percentage of users who should receive this update (1-100)
|
|
117
|
+
- `--rollout`: Percentage of users who should receive this update (1-100). Default is 2% if not specified.
|
|
118
118
|
- `--isPatch`: Whether this is a patch update
|
|
119
119
|
- `false` (default): Full bundle update
|
|
120
120
|
- `true`: Patch update (requires patch bundle)
|
|
@@ -516,7 +516,7 @@ yargs
|
|
|
516
516
|
})
|
|
517
517
|
.option("rollout", {
|
|
518
518
|
alias: "r",
|
|
519
|
-
default: "
|
|
519
|
+
default: "2%",
|
|
520
520
|
demand: false,
|
|
521
521
|
description: "Percentage of users this update should be immediately available to",
|
|
522
522
|
type: "string",
|
|
@@ -586,7 +586,7 @@ yargs
|
|
|
586
586
|
})
|
|
587
587
|
.option("rollout", {
|
|
588
588
|
alias: "r",
|
|
589
|
-
default: "
|
|
589
|
+
default: "2%",
|
|
590
590
|
demand: false,
|
|
591
591
|
description: "Percentage of users this release should be available to",
|
|
592
592
|
type: "string",
|
|
@@ -692,7 +692,7 @@ yargs
|
|
|
692
692
|
})
|
|
693
693
|
.option("rollout", {
|
|
694
694
|
alias: "r",
|
|
695
|
-
default: "
|
|
695
|
+
default: "2%",
|
|
696
696
|
demand: false,
|
|
697
697
|
description: "Percentage of users this release should be immediately available to",
|
|
698
698
|
type: "string",
|