issy 0.7.2 → 0.7.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/cli.js +3 -3
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -2100,7 +2100,7 @@ function typeSymbol(type) {
2100
2100
  }
2101
2101
  function formatIssueRow(issue) {
2102
2102
  const status = issue.frontmatter.status === "open" ? "OPEN " : "CLOSED";
2103
- return ` ${issue.id} ${prioritySymbol(issue.frontmatter.priority)} ${typeSymbol(issue.frontmatter.type)} ${status} ${issue.frontmatter.title.slice(0, 45)}`;
2103
+ return ` ${issue.id} ${prioritySymbol(issue.frontmatter.priority)} ${typeSymbol(issue.frontmatter.type)} ${status} ${issue.frontmatter.title}`;
2104
2104
  }
2105
2105
  async function resolvePosition(opts) {
2106
2106
  const openIssues = await getOpenIssuesByOrder();
@@ -2152,7 +2152,7 @@ async function listIssues(options) {
2152
2152
  }
2153
2153
  console.log(`
2154
2154
  ID Pri Type Status Title`);
2155
- console.log(` ${"-".repeat(70)}`);
2155
+ console.log(` ${"-".repeat(100)}`);
2156
2156
  for (const issue of issues) {
2157
2157
  console.log(formatIssueRow(issue));
2158
2158
  }
@@ -2203,7 +2203,7 @@ async function searchIssuesCommand(query, options) {
2203
2203
  Search results for "${query}":`);
2204
2204
  console.log(`
2205
2205
  ID Pri Type Status Title`);
2206
- console.log(` ${"-".repeat(70)}`);
2206
+ console.log(` ${"-".repeat(100)}`);
2207
2207
  for (const issue of issues) {
2208
2208
  console.log(formatIssueRow(issue));
2209
2209
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issy",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "AI-native issue tracking. Markdown files in .issues/, managed by your coding assistant.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -35,8 +35,8 @@
35
35
  "lint": "biome check src bin"
36
36
  },
37
37
  "dependencies": {
38
- "@miketromba/issy-app": "^0.7.2",
39
- "@miketromba/issy-core": "^0.7.2",
38
+ "@miketromba/issy-app": "^0.7.3",
39
+ "@miketromba/issy-core": "^0.7.3",
40
40
  "update-notifier": "^7.3.1"
41
41
  }
42
42
  }