Skip to content

Commit 6416ce5

Browse files
committed
feat: add support for Angular next release
1 parent 51540c7 commit 6416ce5

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ on:
33
push:
44
branches:
55
- master
6-
- 6.x.x-rc
6+
- next
77
pull_request:
88
branches:
99
- master
10-
- 6.x.x-rc
1110
jobs:
1211
workflow:
1312
runs-on: ubuntu-latest

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
"branches": [
5151
"master",
5252
{
53-
"name": "6.x.x-rc",
54-
"prerelease": "rc",
55-
"channel": "rc"
53+
"name": "next",
54+
"prerelease": "next",
55+
"channel": "next"
5656
}
5757
],
58-
"dryRun": false,
58+
"dryRun": true,
5959
"plugins": [
6060
[
6161
"@semantic-release/commit-analyzer",
@@ -79,7 +79,7 @@
7979
"@semantic-release/npm",
8080
{
8181
"pkgRoot": "./dist/stream-chat-angular",
82-
"npmPublish": true
82+
"npmPublish": false
8383
}
8484
],
8585
[

projects/stream-chat-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
}
1818
},
1919
"peerDependencies": {
20-
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
21-
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
20+
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || next || ^20.0.0",
21+
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || next || ^20.0.0",
2222
"@breezystack/lamejs": "^1.2.7",
2323
"@ngx-translate/core": "^14.0.0 || ^15.0.0 || ^16.0.0",
2424
"rxjs": "^7.4.0",

0 commit comments

Comments
 (0)