-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(server): Change clientLogLevel order to be called first #1973
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All good, one note
lib/Server.js
Outdated
if (this.hot) { | ||
this.sockWrite([connection], 'hot'); | ||
} | ||
|
||
if (this.options.liveReload !== false) { | ||
if (this.options.liveReload) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can be breaking change for non boolean value, let's avoid this in this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, I'll change it at next major version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
239150a
to
fcf85c2
Compare
Sorry, I contained another commit to put .gitkeep. |
For Bugs and Features; did you add new tests?
yes
Motivation / Use-Case
maybe related #1972.
before
after
Breaking Changes
no
Additional Info