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:
parent
cc432418ce
commit
3305eff3c2
1 changed files with 2 additions and 4 deletions
|
@ -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 };
|
||||
|
|
Loading…
Add table
Reference in a new issue