Skip to content

Commit

Permalink
chore: version packages (#584)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 2, 2024
1 parent 8669337 commit e01f14c
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 24 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-fireants-smile.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/core-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livepeer

## 5.0.0

### Major Changes

- [#583](https://github.com/livepeer/ui-kit/pull/583) [`8669337`](https://github.com/livepeer/ui-kit/commit/86693379c1072338bd5bec0350c8548ef4062d1b) Thanks [@suhailkakar](https://github.com/suhailkakar)! - updated the broadcast component to prefer H264 codec in SDP

## 4.2.8

### Patch Changes
Expand Down
41 changes: 31 additions & 10 deletions packages/core-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@livepeer/core-web",
"description": "Livepeer UI Kit's core web library, for adding reactive stores to video elements.",
"license": "MIT",
"version": "4.2.8",
"version": "5.0.0",
"type": "module",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand Down Expand Up @@ -54,13 +56,27 @@
},
"typesVersions": {
"*": {
"broadcast": ["./dist/broadcast/index.d.ts"],
"browser": ["./dist/browser/index.d.ts"],
"external": ["./dist/external/index.d.ts"],
"hls": ["./dist/hls/index.d.ts"],
"media": ["./dist/media/index.d.ts"],
"webrtc": ["./dist/webrtc/index.d.ts"],
"*": ["./dist/index.d.ts"]
"broadcast": [
"./dist/broadcast/index.d.ts"
],
"browser": [
"./dist/browser/index.d.ts"
],
"external": [
"./dist/external/index.d.ts"
],
"hls": [
"./dist/hls/index.d.ts"
],
"media": [
"./dist/media/index.d.ts"
],
"webrtc": [
"./dist/webrtc/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand All @@ -74,5 +90,10 @@
"hls.js": "^1.5.14",
"zustand": "^4.5.5"
},
"keywords": ["livepeer", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"video",
"streaming",
"livestream"
]
}
7 changes: 7 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livepeer/react

## 4.2.9

### Patch Changes

- Updated dependencies [[`8669337`](https://github.com/livepeer/ui-kit/commit/86693379c1072338bd5bec0350c8548ef4062d1b)]:
- @livepeer/core-web@5.0.0

## 4.2.8

### Patch Changes
Expand Down
38 changes: 29 additions & 9 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@livepeer/react",
"description": "React primitives for video apps.",
"license": "MIT",
"version": "4.2.8",
"version": "4.2.9",
"type": "module",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": {
Expand Down Expand Up @@ -49,12 +51,24 @@
},
"typesVersions": {
"*": {
"assets": ["./dist/assets/index.d.ts"],
"broadcast": ["./dist/broadcast/index.d.ts"],
"crypto": ["./dist/crypto/index.d.ts"],
"external": ["./dist/external/index.d.ts"],
"player": ["./dist/player/index.d.ts"],
"*": ["./dist/index.d.ts"]
"assets": [
"./dist/assets/index.d.ts"
],
"broadcast": [
"./dist/broadcast/index.d.ts"
],
"crypto": [
"./dist/crypto/index.d.ts"
],
"external": [
"./dist/external/index.d.ts"
],
"player": [
"./dist/player/index.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
Expand Down Expand Up @@ -100,5 +114,11 @@
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"keywords": ["livepeer", "react", "video", "streaming", "livestream"]
"keywords": [
"livepeer",
"react",
"video",
"streaming",
"livestream"
]
}

0 comments on commit e01f14c

Please sign in to comment.