Skip to content

Commit

Permalink
fix(output): generate output with single quotes instead of double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekcode committed Dec 9, 2019
1 parent 5d05aa4 commit bbd38f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const generateFileContent = (svgContstants: string, types: string, convertionOpt
));
return prettier.format(fileContent, {
parser: 'typescript',
plugins: [typescriptParser]
plugins: [typescriptParser],
singleQuote: true
});
};

Expand Down

0 comments on commit bbd38f6

Please sign in to comment.