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: src/cli.ts
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -52,16 +52,17 @@ new Command()
52
52
.example("unity-changeset list --lts --latest-patch","List changesets of the latest patch versions (LTS only).")
53
53
// Search options.
54
54
.group("Search options")
55
-
.option("--all","Search all changesets (alpha/beta included)",{conflicts: ["pre-release"]})
56
-
.option("--pre-release, --beta","Search only pre-release (alpha/beta) changesets",{conflicts: ["all"]})
55
+
.option("--all","Search all changesets (alpha/beta included)")
56
+
.option("--pre-release, --beta","Search only pre-release (alpha/beta) changesets",{conflicts: ["all","lts","xlts"]})
57
+
.option("--lts","Only the LTS versions",{conflicts: ["all","pre-release","xlts"]})
58
+
.option("--xlts","Only the LTS/XLTS versions (require 'Enterprise' or 'Industry' license to install XLTS version)",{conflicts: ["all","pre-release","lts"]})
57
59
// Filter options.
58
60
.group("Filter options")
59
61
.option("--min <version>","Minimum version (included)")
60
62
.option("--max <version>","Maximum version (included)")
0 commit comments