Skip to content

Commit

Permalink
fix(plugin-webpack): change all LoggerPort to camel case
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 7a3a9fc commit 198ab61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/plugin/webpack/src/WebpackPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export default class WebpackPlugin extends PluginBase<WebpackPluginConfig> {
this.port = c.port;
}
}
if (c.LoggerPort) {
if (this.isValidPort(c.LoggerPort)) {
this.loggerPort = c.LoggerPort;
if (c.loggerPort) {
if (this.isValidPort(c.loggerPort)) {
this.loggerPort = c.loggerPort;
}
}

Expand Down

0 comments on commit 198ab61

Please sign in to comment.