Skip to content

Commit 14ab8be

Browse files
authored
Merge pull request #637 from GetStream/5.x.x-beta
5.x.x beta
2 parents 068012a + e8a6878 commit 14ab8be

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ on:
33
push:
44
branches:
55
- master
6-
- beta
7-
- v5
6+
- 5.x.x-beta
87
pull_request:
98
branches:
109
- master
11-
- beta
12-
- v5
10+
- 5.x.x-beta
1311
jobs:
1412
workflow:
1513
runs-on: ubuntu-latest

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,7 @@
4848
"branches": [
4949
"master",
5050
{
51-
"name": "beta",
52-
"prerelease": true
53-
},
54-
{
55-
"name": "v5",
51+
"name": "5.x.x-beta",
5652
"prerelease": true,
5753
"channel": "beta"
5854
}

projects/stream-chat-angular/ng-package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"@stream-io/transliterate",
1111
"uuid",
1212
"pretty-bytes",
13-
"emoji-regex"
13+
"emoji-regex",
14+
"@floating-ui/dom",
15+
"angular-mentions",
16+
"ngx-float-ui"
1417
]
1518
}

projects/stream-chat-angular/package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
{
22
"name": "stream-chat-angular",
3-
"version": "5.1.6",
3+
"version": "5.1.7-5.x.x-beta.2",
44
"description": "Angular components to create chat conversations or livestream style chat",
55
"author": "GetStream",
66
"homepage": "https://getstream.io/chat/",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/GetStream/stream-chat-angular.git"
1010
},
11+
"exports": {
12+
"./src/assets/styles/scss/index.scss": {
13+
"style": "./src/assets/styles/scss/index.scss"
14+
},
15+
"./src/assets/styles/css/index.css": {
16+
"style": "./src/assets/styles/css/index.css"
17+
}
18+
},
1119
"peerDependencies": {
1220
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
1321
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
14-
"@floating-ui/dom": "^1.6.3",
1522
"@ngx-translate/core": "^14.0.0 || ^15.0.0",
16-
"angular-mentions": "^1.4.0",
17-
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0",
1823
"rxjs": "^7.4.0",
1924
"stream-chat": "^8.26.0"
2025
},
2126
"dependencies": {
27+
"@floating-ui/dom": "^1.6.3",
2228
"@stream-io/transliterate": "^1.5.2",
29+
"angular-mentions": "^1.4.0",
2330
"dayjs": "^1.11.10",
2431
"emoji-regex": "^10.3.0",
32+
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0",
2533
"pretty-bytes": "^6.1.1",
2634
"tslib": "^2.3.0",
2735
"uuid": "^9.0.1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '5.1.6';
1+
export const version = '5.1.7-5.x.x-beta.2';

0 commit comments

Comments
 (0)