Skip to content

Commit

Permalink
fix(plugin-webpack): fix output string color
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #725
  • Loading branch information
R-NK authored and malept committed Apr 3, 2019
1 parent 330d0f5 commit 0c8b7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin/webpack/src/WebpackPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default class WebpackPlugin extends PluginBase<WebpackPluginConfig> {
case 'postStart':
return async (_: any, child: ChildProcess) => {
if (!this.loggedOutputUrl) {
console.info(`\n\nWebpack Output Available: ${'http://localhost:'.cyan}${this.loggerPort}\n`);
console.info(`\n\nWebpack Output Available: ${(`http://localhost:${this.loggerPort}`).cyan}\n`);
this.loggedOutputUrl = true;
}
d('hooking electron process exit');
Expand Down

0 comments on commit 0c8b7e9

Please sign in to comment.