maro-plugin-tasks 1.0.3 → 1.0.5
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.
|
@@ -35,6 +35,7 @@ class RepoTaskTracker extends tracker_1.TaskTracker {
|
|
|
35
35
|
const tasks_dir = this.repo.dir.sub("tasks");
|
|
36
36
|
tasks_dir.create();
|
|
37
37
|
const task_dir = tasks_dir.sub(id);
|
|
38
|
+
task_dir.create();
|
|
38
39
|
task_dir.createFile(exports.TASK_FILE).write(this.toMdString(task));
|
|
39
40
|
return id;
|
|
40
41
|
}
|
|
@@ -50,7 +51,7 @@ class RepoTaskTracker extends tracker_1.TaskTracker {
|
|
|
50
51
|
- FILE_LOCATION: ${relative}:${task.file_location.row}:${task.file_location.col}
|
|
51
52
|
- STATUS: ${TASK_STATUS.OPEN}
|
|
52
53
|
|
|
53
|
-
${task.description} `;
|
|
54
|
+
${task.description ?? ""} `;
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
exports.RepoTaskTracker = RepoTaskTracker;
|