Skip to content

Commit

Permalink
Fixing typo: __metdata__ -> __metadata__
Browse files Browse the repository at this point in the history
Fixes expo#43
  • Loading branch information
ccheever committed Sep 17, 2021
1 parent e2b6436 commit 9f0e321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/generator/generator.js
Expand Up @@ -391,7 +391,7 @@ async function generateFontPackage(webfont) {
dts += ReexportHookDefinition + '\n';

code += `export { default as __metadata__ } from './metadata.json';\n`;
dts += `export const __metdata__: Any;\n`;
dts += `export const __metadata__: Any;\n`;

// metadata.json
await fs.promises.writeFile(
Expand Down

0 comments on commit 9f0e321

Please sign in to comment.