Pretty Print Output Theme JSON

Pretty prints the generated theme json file so that it is easier to debug/modify
This commit is contained in:
Matt Bierner
2017-05-02 19:08:33 -07:00
parent db6b709bde
commit e9b64716ea

View File

@@ -101,6 +101,6 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['tab.border'] = '#00000033';
theme.colors['editorLineNumber.foreground'] = '#FFFFFF4D';
return JSON.stringify(theme);
return JSON.stringify(theme, null, 2);
}
}