taskin 4.1.1 → 4.1.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/index.js +6 -1
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -1078,7 +1078,9 @@ function convertMetadataStyle(content, target) {
|
|
|
1078
1078
|
const block = readMetadataBlock(content);
|
|
1079
1079
|
if (!block || block.fields.length === 0) return content;
|
|
1080
1080
|
const lines = getMetadataStyle(target).format(block.fields).split("\n");
|
|
1081
|
-
|
|
1081
|
+
const intacto = lines.join("\n") === block.lines.join("\n");
|
|
1082
|
+
const contiguo = block.end - block.start === block.lines.length;
|
|
1083
|
+
if (intacto && contiguo) return content;
|
|
1082
1084
|
return replaceMetadataBlock(content, lines);
|
|
1083
1085
|
}
|
|
1084
1086
|
var DEFAULT_METADATA_STYLE_ID, DETECTION_ORDER, METADATA_STYLES, METADATA_STYLE_IDS;
|
|
@@ -1210,6 +1212,9 @@ var init_assignee_identity = __esm({
|
|
|
1210
1212
|
"to be defined",
|
|
1211
1213
|
"nome do responsavel",
|
|
1212
1214
|
"nome do respons\xE1vel",
|
|
1215
|
+
"nao atribuido",
|
|
1216
|
+
"n\xE3o atribu\xEDdo",
|
|
1217
|
+
"unassigned",
|
|
1213
1218
|
"tbd",
|
|
1214
1219
|
"-"
|
|
1215
1220
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskin",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
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",
|
|
@@ -68,24 +68,24 @@
|
|
|
68
68
|
"LICENSE"
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
72
|
-
"@types/express": "^5.0.
|
|
71
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
72
|
+
"@types/express": "^5.0.6",
|
|
73
73
|
"@types/inquirer": "^9.0.9",
|
|
74
74
|
"@types/play-sound": "^1.1.2",
|
|
75
75
|
"chalk": "^5.6.2",
|
|
76
76
|
"commander": "^12.1.0",
|
|
77
|
-
"express": "^
|
|
77
|
+
"express": "^5.2.1",
|
|
78
78
|
"inquirer": "^12.11.0",
|
|
79
79
|
"play-sound": "^1.1.6",
|
|
80
80
|
"ws": "^8.18.3",
|
|
81
81
|
"zod": "^3.25.76",
|
|
82
|
-
"@opentask/taskin-file-system-provider": "3.2.
|
|
83
|
-
"@opentask/taskin-git-utils": "3.0.2",
|
|
82
|
+
"@opentask/taskin-file-system-provider": "3.2.2",
|
|
84
83
|
"@opentask/taskin-task-manager": "3.0.2",
|
|
84
|
+
"@opentask/taskin-task-server-mcp": "0.2.3",
|
|
85
85
|
"@opentask/taskin-task-server-ws": "0.3.2",
|
|
86
|
-
"@opentask/taskin-
|
|
87
|
-
"@opentask/taskin-
|
|
88
|
-
"@opentask/taskin-
|
|
86
|
+
"@opentask/taskin-git-utils": "3.0.2",
|
|
87
|
+
"@opentask/taskin-utils": "1.1.1",
|
|
88
|
+
"@opentask/taskin-types": "2.1.1"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
91
|
"@types/node": "^20.19.24",
|