Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanfbrito committed May 31, 2024
2 parents 96f4838 + d556e99 commit 4afa186
Show file tree
Hide file tree
Showing 5 changed files with 1,180 additions and 420 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
check:
strategy:
fail-fast: true
fail-fast: false
matrix:
os:
- ubuntu-latest
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
"@emotion/styled": "~11.11.0",
"@ewsjs/xhr": "~2.0.2",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/fuselage": "~0.42.0",
"@rocket.chat/fuselage-hooks": "~0.32.1",
"@rocket.chat/fuselage": "~0.54.2",
"@rocket.chat/fuselage-hooks": "~0.33.1",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/icons": "~0.32.0",
"@rocket.chat/icons": "~0.36.0",
"axios": "~1.6.4",
"electron-dl": "3.5.2",
"electron-store": "~8.1.0",
Expand All @@ -75,11 +75,11 @@
"react-virtuoso": "~4.6.2",
"redux": "~5.0.1",
"reselect": "~5.0.1",
"rimraf": "~5.0.5",
"rimraf": "~5.0.7",
"semver": "~7.5.4"
},
"devDependencies": {
"@babel/core": "~7.23.7",
"@babel/core": "~7.23.9",
"@babel/eslint-parser": "~7.23.3",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-function-bind": "~7.23.3",
Expand All @@ -89,7 +89,7 @@
"@fiahfy/icns-convert": "~0.0.12",
"@fiahfy/ico-convert": "~0.0.12",
"@kayahr/jest-electron-runner": "~29.11.0",
"@rocket.chat/eslint-config": "~0.6.0",
"@rocket.chat/eslint-config": "~0.7.0",
"@rocket.chat/prettier-config": "~0.31.25",
"@rollup/plugin-babel": "~6.0.4",
"@rollup/plugin-commonjs": "~25.0.7",
Expand All @@ -108,8 +108,8 @@
"chokidar": "~3.5.3",
"conventional-changelog-cli": "~4.1.0",
"convert-svg-to-png": "~0.6.4",
"electron": "22.3.27",
"electron-builder": "^23.6.0",
"electron": "29.4.1",
"electron-builder": "24.13.3",
"electron-devtools-installer": "^3.2.0",
"electron-notarize": "^1.2.2",
"eslint": "~8.56.0",
Expand All @@ -123,11 +123,11 @@
"jest-environment-jsdom": "~29.7.0",
"jimp": "~0.22.10",
"npm-run-all": "~4.1.5",
"prettier": "~3.1.1",
"prettier": "~3.2.5",
"puppeteer": "~21.7.0",
"rollup": "~4.9.2",
"rollup": "~4.9.6",
"rollup-plugin-copy": "~3.5.0",
"ts-jest": "~29.1.1",
"ts-jest": "~29.1.4",
"ts-node": "~10.9.2",
"typescript": "~5.3.3",
"xvfb-maybe": "~0.2.1"
Expand Down
5 changes: 2 additions & 3 deletions src/notifications/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ export const createNotification = async ({
NOTIFICATIONS_CREATE_RESPONDED
);

eventHandlers.set(
id,
(event) => onEvent?.({ type: event.type, detail: event.detail })
eventHandlers.set(id, (event) =>
onEvent?.({ type: event.type, detail: event.detail })
);

return id;
Expand Down
6 changes: 3 additions & 3 deletions workspaces/desktop-release-action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
".:lint:tsc": "tsc --noEmit"
},
"devDependencies": {
"@rocket.chat/eslint-config": "~0.6.0",
"@rocket.chat/eslint-config": "~0.7.0",
"@rocket.chat/prettier-config": "~0.31.25",
"@types/node": "~16.0.3",
"@typescript-eslint/eslint-plugin": "~6.17.0",
Expand All @@ -20,8 +20,8 @@
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "~2.29.1",
"npm-run-all": "~4.1.5",
"prettier": "~3.1.1",
"rimraf": "~5.0.5",
"prettier": "~3.2.5",
"rimraf": "~5.0.7",
"typescript": "~5.3.3"
},
"dependencies": {
Expand Down
Loading

0 comments on commit 4afa186

Please sign in to comment.