fix(tools/build): remove new SBs from mobile curriculum v1 (#63806)

This commit is contained in:
Niraj Nandish
2025-11-13 22:23:14 +05:30
committed by GitHub
parent 6dc706a785
commit b877d5cd33
2 changed files with 5 additions and 8 deletions

View File

@@ -146,7 +146,8 @@ describe('external curriculum data build', () => {
return (
stage !== SuperBlockStage.Next &&
stage !== SuperBlockStage.Upcoming &&
stage !== SuperBlockStage.Catalog
stage !== SuperBlockStage.Catalog &&
stage !== SuperBlockStage.Core
);
})
.flatMap(([, superBlocks]) => superBlocks);

View File

@@ -39,14 +39,10 @@ interface Block<T> {
const ver = 'v1';
// NOTE: Please don't add new superblocks to this list as this version is being deprecated.
// New superblocks should be added to v2 of the external curriculum data at
// tools/scripts/build/build-external-curricula-data-v2.ts
export const orderedSuperBlockInfo = [
{ dashedName: SuperBlocks.RespWebDesignV9, public: false },
{ dashedName: SuperBlocks.JsV9, public: false },
{ dashedName: SuperBlocks.FrontEndDevLibsV9, public: false },
{ dashedName: SuperBlocks.PythonV9, public: false },
{ dashedName: SuperBlocks.RelationalDbV9, public: false },
{ dashedName: SuperBlocks.BackEndDevApisV9, public: false },
{ dashedName: SuperBlocks.FullStackDeveloperV9, public: false },
{ dashedName: SuperBlocks.RespWebDesignNew, public: true },
{ dashedName: SuperBlocks.DataAnalysisPy, public: true },
{ dashedName: SuperBlocks.MachineLearningPy, public: true },