Skip to content

Commit 49b11ab

Browse files
chore: version packages (#597)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3708b73 commit 49b11ab

File tree

5 files changed

+73
-24
lines changed

5 files changed

+73
-24
lines changed

.changeset/swift-tables-guess.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/core-web/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# livepeer
22

3+
## 5.1.0
4+
5+
### Minor Changes
6+
7+
- [#596](https://github.com/livepeer/ui-kit/pull/596) [`3708b73`](https://github.com/livepeer/ui-kit/commit/3708b73eaa72566c531eba07ecc264fc37adb8ac) Thanks [@gioelecerati](https://github.com/gioelecerati)! - Added mirrored broadcast and peer connection error callback
8+
39
## 5.0.1
410

511
### Patch Changes

packages/core-web/package.json

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@livepeer/core-web",
33
"description": "Livepeer UI Kit's core web library, for adding reactive stores to video elements.",
44
"license": "MIT",
5-
"version": "5.0.1",
5+
"version": "5.1.0",
66
"type": "module",
77
"repository": {
88
"type": "git",
@@ -13,7 +13,9 @@
1313
"main": "./dist/index.cjs",
1414
"module": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
16-
"files": ["dist"],
16+
"files": [
17+
"dist"
18+
],
1719
"exports": {
1820
"./package.json": "./package.json",
1921
".": {
@@ -54,13 +56,27 @@
5456
},
5557
"typesVersions": {
5658
"*": {
57-
"broadcast": ["./dist/broadcast/index.d.ts"],
58-
"browser": ["./dist/browser/index.d.ts"],
59-
"external": ["./dist/external/index.d.ts"],
60-
"hls": ["./dist/hls/index.d.ts"],
61-
"media": ["./dist/media/index.d.ts"],
62-
"webrtc": ["./dist/webrtc/index.d.ts"],
63-
"*": ["./dist/index.d.ts"]
59+
"broadcast": [
60+
"./dist/broadcast/index.d.ts"
61+
],
62+
"browser": [
63+
"./dist/browser/index.d.ts"
64+
],
65+
"external": [
66+
"./dist/external/index.d.ts"
67+
],
68+
"hls": [
69+
"./dist/hls/index.d.ts"
70+
],
71+
"media": [
72+
"./dist/media/index.d.ts"
73+
],
74+
"webrtc": [
75+
"./dist/webrtc/index.d.ts"
76+
],
77+
"*": [
78+
"./dist/index.d.ts"
79+
]
6480
}
6581
},
6682
"scripts": {
@@ -74,5 +90,10 @@
7490
"hls.js": "^1.5.14",
7591
"zustand": "^4.5.5"
7692
},
77-
"keywords": ["livepeer", "video", "streaming", "livestream"]
93+
"keywords": [
94+
"livepeer",
95+
"video",
96+
"streaming",
97+
"livestream"
98+
]
7899
}

packages/react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @livepeer/react
22

3+
## 4.2.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3708b73`](https://github.com/livepeer/ui-kit/commit/3708b73eaa72566c531eba07ecc264fc37adb8ac)]:
8+
- @livepeer/core-web@5.1.0
9+
310
## 4.2.10
411

512
### Patch Changes

packages/react/package.json

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@livepeer/react",
33
"description": "React primitives for video apps.",
44
"license": "MIT",
5-
"version": "4.2.10",
5+
"version": "4.2.11",
66
"type": "module",
77
"repository": {
88
"type": "git",
@@ -13,7 +13,9 @@
1313
"main": "./dist/index.cjs",
1414
"module": "./dist/index.js",
1515
"types": "./dist/index.d.ts",
16-
"files": ["dist"],
16+
"files": [
17+
"dist"
18+
],
1719
"exports": {
1820
"./package.json": "./package.json",
1921
".": {
@@ -49,12 +51,24 @@
4951
},
5052
"typesVersions": {
5153
"*": {
52-
"assets": ["./dist/assets/index.d.ts"],
53-
"broadcast": ["./dist/broadcast/index.d.ts"],
54-
"crypto": ["./dist/crypto/index.d.ts"],
55-
"external": ["./dist/external/index.d.ts"],
56-
"player": ["./dist/player/index.d.ts"],
57-
"*": ["./dist/index.d.ts"]
54+
"assets": [
55+
"./dist/assets/index.d.ts"
56+
],
57+
"broadcast": [
58+
"./dist/broadcast/index.d.ts"
59+
],
60+
"crypto": [
61+
"./dist/crypto/index.d.ts"
62+
],
63+
"external": [
64+
"./dist/external/index.d.ts"
65+
],
66+
"player": [
67+
"./dist/player/index.d.ts"
68+
],
69+
"*": [
70+
"./dist/index.d.ts"
71+
]
5872
}
5973
},
6074
"scripts": {
@@ -100,5 +114,11 @@
100114
"react": "^18.3.1",
101115
"react-dom": "^18.3.1"
102116
},
103-
"keywords": ["livepeer", "react", "video", "streaming", "livestream"]
117+
"keywords": [
118+
"livepeer",
119+
"react",
120+
"video",
121+
"streaming",
122+
"livestream"
123+
]
104124
}

0 commit comments

Comments
 (0)