Skip to content

Commit

Permalink
fix: 스크립트 content 변수 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Sep 26, 2024
1 parent ced56b3 commit b307f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/scripts/generateReactComponentFromSvg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ const generateExportFile = async (components: string[]) => {
)
.join("\n");

const finalExportFileContent = `export * from "../types/Icon.ts";\n${exportFileContent}`;
const resolvedExportFileContent = `export * from "../types/Icon.ts";\n${exportFileContent}`;

await fs.writeFile(EXPORT_FILE_PATH, finalExportFileContent);
await fs.writeFile(EXPORT_FILE_PATH, resolvedExportFileContent);
};

(async () => {
Expand Down

0 comments on commit b307f4f

Please sign in to comment.