Skip to content

Commit

Permalink
fix: explain what the json output is
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Aug 19, 2024
1 parent dabbf72 commit cfd62d2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/update-registry/shared/updateRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const registryUpdate = (missingTypesAsDescribeResult: DescribeEntry[]) =>
registry.suffixes[suffix] = typeId;
}
});
console.log('Updated registry with new types:');
const jsonData = JSON.stringify(registry, null, 2);
fs.writeFileSync('./src/registry/metadataRegistry.json', jsonData);
};
Expand Down

0 comments on commit cfd62d2

Please sign in to comment.