UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

15 lines 503 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.loadTaskFromFile = loadTaskFromFile; const fs_extra_1 = require("fs-extra"); function loadTaskFromFile(filePath) { try { const content = (0, fs_extra_1.readFileSync)(filePath, 'utf8'); const taskData = JSON.parse(content); return Object.assign(Object.assign({}, taskData), { path: filePath }); } catch (_a) { return null; } } //# sourceMappingURL=loadTaskFromFile.js.map