0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Minor cleanup in the content types generator (#11218)

This commit is contained in:
Ryan Govostes 2024-06-10 04:16:22 -07:00 committed by GitHub
parent cc432418ce
commit 3305eff3c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -121,16 +121,14 @@ export async function createContentTypesGenerator({
switch (event.name) {
case 'addDir':
collectionEntryMap[JSON.stringify(collection)] = {
collectionEntryMap[collectionKey] = {
type: 'unknown',
entries: {},
};
logger.debug('content', `${cyan(collection)} collection added`);
break;
case 'unlinkDir':
if (collectionKey in collectionEntryMap) {
delete collectionEntryMap[JSON.stringify(collection)];
}
delete collectionEntryMap[collectionKey];
break;
}
return { shouldGenerateTypes: true };