Skip to content

Commit ce84ea5

Browse files
authored
chore: update hca/cellxgene mappings (#4016) (#4018)
* chore: sort existing hca/cellxgene mappings (#4016) * chore: update hca/cellxgene mappings (#4016)
1 parent fb97c00 commit ce84ea5

File tree

2 files changed

+190
-170
lines changed

2 files changed

+190
-170
lines changed

explorer/site-config/hca-dcp/dev/scripts/get-cellxgene-projects.ts

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ async function getCellxGeneProjects(): Promise<void> {
3636
});
3737
}
3838
}
39+
// Sort to create nicer diffs
40+
cellxgeneProjects.sort((a, b) =>
41+
a.hcaProjectId.localeCompare(b.hcaProjectId)
42+
);
3943
await fsp.writeFile(
4044
cellxgeneProjectsFilePath,
4145
JSON.stringify(cellxgeneProjects, undefined, 2)

0 commit comments

Comments
 (0)