Reorganize Blender Web execution around capabilities
Some checks are pending
M6 deployable RC / quick (push) Waiting to run
M6 deployable RC / chromium (push) Blocked by required conditions
M6 deployable RC / release (push) Blocked by required conditions

This commit is contained in:
mes123456
2026-08-24 18:37:46 -04:00
parent 0b2c3ba0dd
commit a081c68c87
2530 changed files with 763976 additions and 79 deletions

View File

@@ -5,7 +5,7 @@ import { readIndexedTask, verifyTaskIndex, root } from './task-context-lib.mjs';
const taskArg = process.argv.indexOf('--task');
const task = taskArg >= 0 ? process.argv[taskArg + 1] : undefined;
if (!task) throw new Error('usage: node tools/web/generate-task-card.mjs --task <task-id>');
verifyTaskIndex();
verifyTaskIndex(task);
const entry = readIndexedTask(task);
if (!entry) throw new Error('unknown indexed task: ' + task);
const cardPath = path.join(root, 'docs/tasks', task + '.md');