-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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: upgrade deps #6400
chore: upgrade deps #6400
Conversation
Correct on source-map - still blocked. See mozilla/source-map#331 for status |
Browser build fails because of
For reason yet unknown to me it doesn't transpile this arrow function |
I just downgraded |
Codecov Report
@@ Coverage Diff @@
## master #6400 +/- ##
=======================================
Coverage 63.48% 63.48%
=======================================
Files 227 227
Lines 8697 8697
Branches 4 4
=======================================
Hits 5521 5521
Misses 3175 3175
Partials 1 1 Continue to review full report at Codecov.
|
@@ -4,7 +4,7 @@ | |||
"ansi-regex": "^3.0.0", | |||
"ansi-styles": "^3.2.0", | |||
"babel-core": "^6.23.1", | |||
"babel-eslint": "^7.2.3", | |||
"babel-eslint": "^8.2.3", |
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.
do we not get a peer dep warning from this?
facebook/fbjs#275 hasn't been released yet, has 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.
yup, we do, missed that. @cpojer might push someone to actually make a release? :p in the meantime I'll revert this change
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.
you'll need to downgrade eslint as well
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.
oh man
"lerna": "2.9.0", | ||
"micromatch": "^2.3.11", | ||
"lerna": "2.11.0", | ||
"micromatch": "^3.1.10", |
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.
I thought this broke the browser build. Awesome that it seems fixed!
Could we land this? Seems like it needs a rebase and some lint fix? |
I'll try to iterate on this later today. |
b093ffd
to
641d638
Compare
|
## Summary As part of #6400, `micromatch` was updated. While `micromatch`'s CHANGELOG claims that this is safe, several regressions have been noted in cases where users relied upon invalid glob patterns. For example, these patterns would all match `src/foo/bar/baz.js`, but no longer do: - `src/**/*.{js}` - `src/**.js` - `src/**/*.{js|ts}` Fixes #6563 Fixes #6546 ## Test plan Unit tests were added which demonstrate the known cases.
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
Done with
yarn upgrade-interactive
+ some packages with--latest
flag on.Deps yet to be upgraded separately:
Fixes #6040
Test plan
No.