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.
Files changed (2) hide show
  1. package/dist/pipe-kan.js +1 -1
  2. 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 listAll(["issue", "list", ...extra]);
385
+ return JSON.stringify(await listOnce(["issue", "list", ...extra, "--raw"]));
386
386
  },
387
387
  async listEpics() {
388
388
  return listAll(["issue", "list", "-tEpic"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipe-kan",
3
- "version": "0.20.2",
3
+ "version": "0.20.3",
4
4
  "description": "Local Kanban for jira-cli",
5
5
  "license": "MIT",
6
6
  "type": "module",