-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from fracht/add-focus-index-parameter-for-sea…
…rch-messages Fixed 'update search results' behavior when receiving a new message
- Loading branch information
Showing
43 changed files
with
4,684 additions
and
1,365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@rchat/client': minor | ||
'@rchat/react': minor | ||
--- | ||
|
||
Fixed 'update search results' behavior when receiving a new message |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Continuous Integration | ||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [labeled, opened, synchronize, reopened] | ||
jobs: | ||
# build: | ||
# name: Build, test & lint | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
|
||
# - name: Use Node 20 | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: 20 | ||
|
||
# - name: Install pnpm 9.8.0 | ||
# uses: pnpm/[email protected] | ||
# with: | ||
# version: 9.8.0 | ||
|
||
# - name: Install pnpm dependencies (with cache) | ||
# uses: covbot/pnpm-install-with-cache@v1 | ||
|
||
# - name: Build, test & lint | ||
# run: pnpm run ci --filter=...[${{ github.event.pull_request.base.sha }}...${{ github.sha }}] | ||
changeset: | ||
name: Check for changeset existence | ||
runs-on: ubuntu-latest | ||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chore') }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install pnpm 9.8.0 | ||
uses: pnpm/[email protected] | ||
with: | ||
version: 9.8.0 | ||
|
||
- name: Install pnpm dependencies (with cache) | ||
uses: covbot/pnpm-install-with-cache@v1 | ||
|
||
- name: Danger | ||
run: pnpm danger ci | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ yarn-error.log* | |
|
||
scripts/*.mjs | ||
coverage | ||
**/.turbo | ||
**/.turbo | ||
**/.storybook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,28 @@ | |
"name": "rchat", | ||
"version": "0.0.0", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "turbo run build", | ||
"bump": "changeset version && pnpm i --lockfile-only", | ||
"ci": "turbo run lint test build", | ||
"dev": "turbo run dev --parallel", | ||
"ci": "turbo run lint test build --env-mode=loose", | ||
"dev": "turbo watch build", | ||
"format": "syncpack format && prettier --write **/*.{ts,tsx,js,jsx,json,yml,md}", | ||
"release": "pnpm build && changeset tag && pnpm publish -r" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.0", | ||
"@types/jest": "^29.2.0", | ||
"clean-publish": "^4.0.1", | ||
"danger": "^11.2.4", | ||
"prettier": "^2.8.4", | ||
"syncpack": "^8.2.4", | ||
"turbo": "^1.4.3", | ||
"typescript": "^5.0.4" | ||
"@changesets/cli": "^2.27.7", | ||
"@types/jest": "^29.5.12", | ||
"clean-publish": "^5.0.0", | ||
"danger": "^12.3.3", | ||
"prettier": "^3.3.3", | ||
"syncpack": "^12.4.0", | ||
"turbo": "^2.0.14", | ||
"typescript": "^5.5.4" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]" | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import config from '@sirse-dev/eslint-config'; | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'**/node_modules', | ||
'**/dist', | ||
'**/*.config.js', | ||
'**/*.test.js', | ||
'**/*.test.ts', | ||
'**/stories', | ||
'**/test', | ||
'**/prepared-package', | ||
], | ||
}, | ||
...config, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import config from '@sirse-dev/eslint-config'; | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'**/node_modules', | ||
'**/dist', | ||
'**/*.config.js', | ||
'**/*.test.js', | ||
'**/*.test.ts', | ||
'**/stories', | ||
'**/test', | ||
'**/prepared-package', | ||
], | ||
}, | ||
...config, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-empty-object-type': 'off', | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.