Skip to content

Commit 198ab61

Browse files
R-NKmalept
authored andcommitted
fix(plugin-webpack): change all LoggerPort to camel case
ISSUES CLOSED: #725
1 parent 7a3a9fc commit 198ab61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/plugin/webpack/src/WebpackPlugin.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ export default class WebpackPlugin extends PluginBase<WebpackPluginConfig> {
5050
this.port = c.port;
5151
}
5252
}
53-
if (c.LoggerPort) {
54-
if (this.isValidPort(c.LoggerPort)) {
55-
this.loggerPort = c.LoggerPort;
53+
if (c.loggerPort) {
54+
if (this.isValidPort(c.loggerPort)) {
55+
this.loggerPort = c.loggerPort;
5656
}
5757
}
5858

0 commit comments

Comments
 (0)