pipe-kan 0.20.2 → 0.20.3
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/pipe-kan.js +1 -1
- package/package.json +1 -1
package/dist/pipe-kan.js
CHANGED
|
@@ -382,7 +382,7 @@ function createJiraCli(opts = {}) {
|
|
|
382
382
|
return {
|
|
383
383
|
async list(flags) {
|
|
384
384
|
const extra = (flags || DEFAULT_FLAGS).split(/\s+/).filter(Boolean);
|
|
385
|
-
return
|
|
385
|
+
return JSON.stringify(await listOnce(["issue", "list", ...extra, "--raw"]));
|
|
386
386
|
},
|
|
387
387
|
async listEpics() {
|
|
388
388
|
return listAll(["issue", "list", "-tEpic"]);
|