issy 0.7.1 → 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.
- package/dist/cli.js +25 -6
- 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
|
|
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(
|
|
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(
|
|
2206
|
+
console.log(` ${"-".repeat(100)}`);
|
|
2207
2207
|
for (const issue of issues) {
|
|
2208
2208
|
console.log(formatIssueRow(issue));
|
|
2209
2209
|
}
|
|
@@ -2308,9 +2308,28 @@ async function nextIssueCommand() {
|
|
|
2308
2308
|
return;
|
|
2309
2309
|
}
|
|
2310
2310
|
console.log(`
|
|
2311
|
-
|
|
2312
|
-
console.log(` ${
|
|
2313
|
-
console.log(
|
|
2311
|
+
${"=".repeat(70)}`);
|
|
2312
|
+
console.log(` ${typeSymbol(issue.frontmatter.type)} ${issue.frontmatter.title}`);
|
|
2313
|
+
console.log("=".repeat(70));
|
|
2314
|
+
console.log(` ID: ${issue.id}`);
|
|
2315
|
+
console.log(` Status: ${issue.frontmatter.status.toUpperCase()}`);
|
|
2316
|
+
console.log(` Priority: ${prioritySymbol(issue.frontmatter.priority)} ${issue.frontmatter.priority}`);
|
|
2317
|
+
if (issue.frontmatter.scope) {
|
|
2318
|
+
console.log(` Scope: ${issue.frontmatter.scope}`);
|
|
2319
|
+
}
|
|
2320
|
+
console.log(` Type: ${issue.frontmatter.type}`);
|
|
2321
|
+
if (issue.frontmatter.labels) {
|
|
2322
|
+
console.log(` Labels: ${issue.frontmatter.labels}`);
|
|
2323
|
+
}
|
|
2324
|
+
if (issue.frontmatter.order) {
|
|
2325
|
+
console.log(` Order: ${issue.frontmatter.order}`);
|
|
2326
|
+
}
|
|
2327
|
+
console.log(` Created: ${issue.frontmatter.created}`);
|
|
2328
|
+
if (issue.frontmatter.updated) {
|
|
2329
|
+
console.log(` Updated: ${issue.frontmatter.updated}`);
|
|
2330
|
+
}
|
|
2331
|
+
console.log("-".repeat(70));
|
|
2332
|
+
console.log(issue.content);
|
|
2314
2333
|
console.log();
|
|
2315
2334
|
}
|
|
2316
2335
|
async function main() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "issy",
|
|
3
|
-
"version": "0.7.
|
|
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.
|
|
39
|
-
"@miketromba/issy-core": "^0.7.
|
|
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
|
}
|