Skip to content

Commit

Permalink
fix: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson committed Aug 23, 2021
1 parent ebb4f49 commit f7d2055
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function generateStyledComponents() {
const allComponentsFilename = path.join(tmpDir, 'src/benchmark/styledComponents.js');
const allComponents = `
${components.map((mod, i) => `import cmp${i} from ${JSON.stringify(mod)}`).join(';')};
export default [${components.map((_, i) => `cmp${i}`).join(',')}];
export default [${components.map((_, i) => `cmp${i}`).join(',')}];`;
fs.writeFileSync(allComponentsFilename, allComponents, 'utf-8');

return {
Expand Down

0 comments on commit f7d2055

Please sign in to comment.