mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
refactor: convert is-audited to TypeScript (#51232)
This commit is contained in:
committed by
GitHub
parent
0f9066e504
commit
e99154665e
@@ -111,8 +111,8 @@ void (async () => {
|
||||
console.log(`\n=== ${lang} ===`);
|
||||
const certs = getAuditedSuperBlocks({
|
||||
language: lang,
|
||||
showNewCurriculum: process.env.SHOW_NEW_CURRICULUM,
|
||||
showUpcomingChanges: process.env.SHOW_UPCOMING_CHANGES
|
||||
showNewCurriculum: process.env.SHOW_NEW_CURRICULUM === 'true',
|
||||
showUpcomingChanges: process.env.SHOW_UPCOMING_CHANGES === 'true'
|
||||
});
|
||||
const langCurriculumDirectory = join(
|
||||
process.cwd(),
|
||||
|
||||
Reference in New Issue
Block a user