-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
style(utils/addEntries): cleaner variable naming #1478
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
Conversation
const domain = createDomain(devServerOptions, app); | ||
const devClient = [`${require.resolve('../../client/')}?${domain}`]; | ||
const domain = createDomain(options, app); | ||
const entries = [ `${require.resolve('../../client/')}?${domain}` ]; |
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.
Looks your have
here, maybe better run prettier?
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.
The space is intenentional [ a, b ]
here, prettier does hopefully leave it :)
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.
@michael-ciniawsky hm, we should integrate prettier here 😕
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.
Yep, prettier will be included with webpack-defaults
in webpack-dev-server >= v4.0.0
, it should still leave whitespace in this case since it is more readable
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.
@michael-ciniawsky looks appveyor fail maybe need rebase? |
Codecov Report
@@ Coverage Diff @@
## master #1478 +/- ##
==========================================
+ Coverage 74.02% 74.17% +0.15%
==========================================
Files 10 10
Lines 666 666
==========================================
+ Hits 493 494 +1
+ Misses 173 172 -1
Continue to review full report at Codecov.
|
Yep :) |
Type
Issues
SemVer