taskin 4.1.3 → 4.1.4
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/index.js +10 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -5473,8 +5473,17 @@ async function executeLint(options) {
|
|
|
5473
5473
|
console.log();
|
|
5474
5474
|
}
|
|
5475
5475
|
if (result.valid) {
|
|
5476
|
-
|
|
5476
|
+
if (notices.length === 0) {
|
|
5477
|
+
console.log(chalk5.green(`\u2705 All task files are valid!
|
|
5477
5478
|
`));
|
|
5479
|
+
} else {
|
|
5480
|
+
const partes = [
|
|
5481
|
+
result.warningCount > 0 ? `${result.warningCount} warning(s)` : "",
|
|
5482
|
+
result.infoCount > 0 ? `${result.infoCount} info` : ""
|
|
5483
|
+
].filter(Boolean);
|
|
5484
|
+
console.log(chalk5.green(`\u2705 No errors \u2014 ${partes.join(" and ")} above, listed for a human to decide.
|
|
5485
|
+
`));
|
|
5486
|
+
}
|
|
5478
5487
|
}
|
|
5479
5488
|
if (!result.valid && !options.fix) {
|
|
5480
5489
|
console.log(chalk5.blue(`\u{1F4A1} Run with --fix to automatically fix format issues
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskin",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Task management system integrated with Git workflows",
|
|
5
5
|
"motivation": "Provide a CLI tool for task management integrated with Git workflows",
|
|
6
6
|
"solve": "Simplifies task tracking and management directly from the command line",
|
|
@@ -79,13 +79,13 @@
|
|
|
79
79
|
"play-sound": "^1.1.6",
|
|
80
80
|
"ws": "^8.18.3",
|
|
81
81
|
"zod": "^3.25.76",
|
|
82
|
-
"@opentask/taskin-
|
|
82
|
+
"@opentask/taskin-git-utils": "3.0.2",
|
|
83
83
|
"@opentask/taskin-task-manager": "3.0.2",
|
|
84
|
-
"@opentask/taskin-
|
|
84
|
+
"@opentask/taskin-file-system-provider": "3.2.3",
|
|
85
85
|
"@opentask/taskin-task-server-mcp": "0.2.4",
|
|
86
|
-
"@opentask/taskin-
|
|
87
|
-
"@opentask/taskin-
|
|
88
|
-
"@opentask/taskin-
|
|
86
|
+
"@opentask/taskin-task-server-ws": "0.3.2",
|
|
87
|
+
"@opentask/taskin-types": "2.1.1",
|
|
88
|
+
"@opentask/taskin-utils": "1.1.1"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@types/node": "^20.19.24",
|