Simplified implementation

This commit is contained in:
Carl Mercier
2025-07-26 01:13:23 -05:00
committed by Ralph Khreish
parent ef23beac0d
commit 3f31c34f8d
4 changed files with 20 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
import path from 'path';
import { log, readJSON, writeJSON, setTasksForTag, normalizeTaskIds } from '../utils.js';
import { log, readJSON, writeJSON, setTasksForTag } from '../utils.js';
import { isTaskDependentOn } from '../task-manager.js';
import generateTaskFiles from './generate-task-files.js';
@@ -79,8 +79,6 @@ async function moveTask(
// Get the tasks for the current tag
const tasks = rawData[tag].tasks;
normalizeTaskIds(tasks);
log(
'info',