refactor: top-down curriculum build (#61459)

This commit is contained in:
Oliver Eyton-Williams
2025-08-26 12:37:26 +02:00
committed by GitHub
parent 45c098d506
commit a801d503bc
14264 changed files with 4300 additions and 3151 deletions

View File

@@ -0,0 +1,8 @@
const fs = require('fs');
const yaml = require('js-yaml');
const buildCertification = filePath => ({
challenges: [yaml.load(fs.readFileSync(filePath, 'utf8'))]
});
module.exports = { buildCertification };