-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
feat: add MediaMetadata #2410
feat: add MediaMetadata #2410
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.
Thanks! I just had one question re: the browserslist change but that's it. The other comment is just a nitpick and can be ignored if you want.
package.json
Outdated
"browserslist": [ | ||
"cover 100%", | ||
"not dead" | ||
], |
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.
What's the reason behind 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.
My IDE (webstorm) showed a warning that string is not a valid option for the browserslist.
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.
Sorry, your IDE has a bug I guess. It's definitely valid and is widely used. The CSS property transition
and align-items
no longer need prefixing so your first screenshot (before the change) is correct.
// eslint-disable-next-line no-empty | ||
} catch (e) {} |
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.
Usually, I just do this to avoid disabling the linting rule:
catch(e) {
// Do nothing
}
Also, it looks like there are merge conflicts since the other PR for markers was merged. If you could address those, that'd be awesome. Thanks again! |
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.
Thanks! I've reverted the browserslist
change as discussed.
Thanks for the work on this. It's included in v3.7.0 🎉 |
add MediaMetadata