tines 0.0.93 → 0.0.95
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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4841,7 +4841,7 @@ function register2(program3) {
|
|
|
4841
4841
|
issues.command("list").description("List issues across projects (hides done issues unless --all)").option("-p, --project <name>", "filter by project name or id").option("-s, --state <name>", "filter by state name or id").option("-c, --category <cat>", "filter by state category").option("-w, --workflow <id-or-name>", "filter by workflow").option("-a, --all", "include issues in done states").option(
|
|
4842
4842
|
"--ready",
|
|
4843
4843
|
"only issues that are actionable now (not done, not a duplicate, no open blockers)"
|
|
4844
|
-
).option("-q, --search <text>", "search titles and descriptions")
|
|
4844
|
+
).option("-q, --search <text>", "search titles and descriptions").option("--brief", "omit description bodies (saves tokens when scanning)")
|
|
4845
4845
|
).action(
|
|
4846
4846
|
async (opts) => {
|
|
4847
4847
|
const api = client(opts);
|
|
@@ -4855,6 +4855,10 @@ function register2(program3) {
|
|
|
4855
4855
|
hide_done: !opts.all,
|
|
4856
4856
|
ready: opts.ready,
|
|
4857
4857
|
q: opts.search,
|
|
4858
|
+
// The table below never prints descriptions, so --brief only
|
|
4859
|
+
// ever changes --json; it is off by default so existing
|
|
4860
|
+
// consumers of the JSON keep the field.
|
|
4861
|
+
brief: opts.brief,
|
|
4858
4862
|
...page
|
|
4859
4863
|
})
|
|
4860
4864
|
);
|