mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
feat: allow filtering by block and challengeId (#63640)
This commit is contained in:
committed by
GitHub
parent
8de1289fa8
commit
4ec96c1a0c
@@ -15,7 +15,10 @@ import {
|
||||
|
||||
const globalConfigPath = path.resolve(__dirname, '../../../shared-dist/config');
|
||||
|
||||
const isSelectiveBuild = !!process.env.FCC_SUPERBLOCK;
|
||||
const isSelectiveBuild =
|
||||
process.env.FCC_SUPERBLOCK ||
|
||||
process.env.FCC_BLOCK ||
|
||||
process.env.FCC_CHALLENGE_ID;
|
||||
|
||||
void getChallengesForLang('english')
|
||||
.then(result => {
|
||||
|
||||
Reference in New Issue
Block a user