issy 0.7.1 → 0.7.2
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 +22 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -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.2",
|
|
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.2",
|
|
39
|
+
"@miketromba/issy-core": "^0.7.2",
|
|
40
40
|
"update-notifier": "^7.3.1"
|
|
41
41
|
}
|
|
42
42
|
}
|