-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
chore(deps): update deps #2577
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
chore(deps): update deps #2577
Conversation
b76d2a2
to
3f62a82
Compare
"jest-junit": "^10.0.0", | ||
"jquery": "^3.5.0", |
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.
We don't need jquery.
Codecov Report
@@ Coverage Diff @@
## v4 #2577 +/- ##
==========================================
- Coverage 93.41% 92.84% -0.58%
==========================================
Files 34 35 +1
Lines 1291 1313 +22
Branches 363 368 +5
==========================================
+ Hits 1206 1219 +13
- Misses 82 89 +7
- Partials 3 5 +2
Continue to review full report at Codecov.
|
3f62a82
to
431ae5e
Compare
@@ -11,7 +11,7 @@ describe('CLI', () => { | |||
testBin('--progress') | |||
.then((output) => { | |||
expect(output.exitCode).toEqual(0); | |||
expect(output.stderr).toContain('0% compiling'); | |||
expect(output.stderr).toContain('100%'); |
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.
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.
/cc @sokra
431ae5e
to
778fd9a
Compare
@@ -29,7 +29,7 @@ describe('progress', () => { | |||
let foundProgress = false; | |||
let foundProfile = false; | |||
calls.forEach((call) => { | |||
if (call[0].includes('0% compiling')) { | |||
if (call[0].includes('2%')) { |
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 previous webpack@next of beta was able to output 0% but the new version can't output this. I'll investigate this but anyway, this PR is okay.(progress feature can work).
778fd9a
to
123753d
Compare
For Bugs and Features; did you add new tests?
Motivation / Use-Case
Update.
Breaking Changes
no
Additional Info