-
Notifications
You must be signed in to change notification settings - Fork 77
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
build: various mux and upstream version bumps. Improve semver matcher… #198
build: various mux and upstream version bumps. Improve semver matcher… #198
Conversation
…s to be more consistent with elements.
@cjpillsbury is attempting to deploy a commit to the Mux Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
"@types/probe-image-size": "^7.0.0", | ||
"copy-to-clipboard": "^3.3.1", | ||
"got": "^11.8.3", | ||
"hls.js": "^1.4.14", | ||
"hls.js": "~1.5.11", |
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.
consistent with playback-core specification
"micro": "9.3.5-canary.3", | ||
"mux-embed": "^4.30.0", | ||
"mux-embed": "~5.2.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.
consistent with playback-core specification
@@ -33,8 +33,8 @@ const PlyrPlayer: React.FC<Props> = ({ playbackId, poster, currentTime, onLoaded | |||
useEffect(() => { | |||
const video = videoRef.current; | |||
const src = `${getStreamBaseUrl()}/${playbackId}.m3u8`; | |||
let hls: Hls | null; | |||
hls = null; | |||
let hls: Hls | undefined; |
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.
now that we have official types in mux embed, this should be undefined
…s to be more consistent with elements.