Skip to content

Commit

Permalink
Bump the development-dependencies group across 1 directory with 23 up…
Browse files Browse the repository at this point in the history
…dates (#591)

Bump the development-dependencies group across 1 directory with 23 updates

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Mikhail Aheichyk <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mikhail Aheichyk <[email protected]>
  • Loading branch information
dependabot[bot] and Mikhail Aheichyk authored May 21, 2024
1 parent 0f02a43 commit 6e73a80
Show file tree
Hide file tree
Showing 11 changed files with 975 additions and 706 deletions.
14 changes: 7 additions & 7 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"private": true,
"dependencies": {},
"devDependencies": {
"@axe-core/playwright": "^4.8.1",
"@playwright/test": "^1.39.0",
"@types/lodash": "^4.14.200",
"@axe-core/playwright": "^4.9.1",
"@playwright/test": "^1.44.0",
"@types/lodash": "^4.17.4",
"@types/node": "^20.4.6",
"eslint": "^8.53.0",
"eslint-plugin-playwright": "^0.18.0",
"eslint": "^8.57.0",
"eslint-plugin-playwright": "^1.6.1",
"lodash": "^4.17.21",
"testcontainers": "^10.2.1",
"typescript": "^5.2.2"
"testcontainers": "^10.9.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20",
Expand Down
16 changes: 8 additions & 8 deletions matrix-meetings-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,22 @@
"devDependencies": {
"@nestjs/cli": "^10.1.14",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.200",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.2.0",
"@types/mime-types": "^2.1.3",
"@types/mustache": "^4.2.4",
"@types/mime-types": "^2.1.4",
"@types/mustache": "^4.2.5",
"@types/node": "^20.4.6",
"@types/uuid": "^9.0.6",
"@types/uuid": "^9.0.8",
"copyfiles": "^2.4.1",
"depcheck": "^1.4.7",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"i18next-parser": "^8.9.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"i18next-parser": "^8.13.0",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^27.1.5",
"ts-mockito": "^2.6.1",
"typescript": "^5.2.2"
"typescript": "^5.4.5"
},
"jest": {
"testEnvironment": "node",
Expand Down
12 changes: 6 additions & 6 deletions matrix-meetings-bot/src/DeepReadOnly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
export type DeepReadonly<T> = T extends (infer R)[]
? DeepReadonlyArray<R>
: // eslint-disable-next-line @typescript-eslint/ban-types
T extends Function
? T
: // eslint-disable-next-line @typescript-eslint/ban-types
T extends object
? DeepReadonlyObject<T>
: T;
T extends Function
? T
: // eslint-disable-next-line @typescript-eslint/ban-types
T extends object
? DeepReadonlyObject<T>
: T;

export type DeepReadonlyArray<T> = ReadonlyArray<DeepReadonly<T>>;

Expand Down
20 changes: 10 additions & 10 deletions matrix-meetings-widget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,28 +44,28 @@
"devDependencies": {
"@craco/craco": "^7.1.0",
"@matrix-widget-toolkit/testing": "^2.3.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^27.5.2",
"@types/jest-axe": "^3.5.7",
"@types/lodash": "^4.14.200",
"@types/jest-axe": "^3.5.9",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.2.0",
"@types/mustache": "^4.2.4",
"@types/mustache": "^4.2.5",
"@types/node": "^20.4.6",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.19",
"@types/react-i18next": "^8.1.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"i18next-parser": "^8.9.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"i18next-parser": "^8.13.0",
"jest": "^27.4.3",
"jest-axe": "^8.0.0",
"msw": "^1.2.5",
"msw": "^1.3.2",
"react-scripts": "5.0.1",
"typescript": "^5.2.2"
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export const MeetingCard = withRoomIdMeeting(
endDate: spansMultipleYears
? fullDateFormat
: spansMultipleDays
? withoutYearDateFormat
: timeOnlyDateFormat,
? withoutYearDateFormat
: timeOnlyDateFormat,
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ export const ScheduleMeeting = ({
isMessagingEnabled === undefined
? undefined
: isMessagingEnabled
? 0
: getMessagingPowerLevel();
? 0
: getMessagingPowerLevel();
const powerLevels =
messaging !== undefined
? {
Expand Down
9 changes: 4 additions & 5 deletions matrix-meetings-widget/src/store/acceptMeetingInvitations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,10 @@ export async function acceptMeetingInvitations({
.filter((m) => m?.creator === userId)

// discard all meetings without invitations
.map(
(m) =>
m?.participants.find(
(p) => p.userId === userId && p.membership === 'invite',
),
.map((m) =>
m?.participants.find(
(p) => p.userId === userId && p.membership === 'invite',
),
)
.filter(isDefined)

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/cli": "^2.27.3",
"depcheck": "^1.4.7",
"eslint-config-prettier": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"yarn-deduplicate": "^6.0.2"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/calendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"rrule": "^2.8.1"
},
"devDependencies": {
"@types/lodash": "^4.14.200",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.2.0"
},
"jest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,9 @@ export function extractCalendarChange(
});
}
} else {
const calendarEntry = map.get(newCalendarEntry.uid)
?.singleOrRecurringEntry;
const calendarEntry = map.get(
newCalendarEntry.uid,
)?.singleOrRecurringEntry;
if (calendarEntry && isRRuleEntry(calendarEntry)) {
const duration = parseICalDate(calendarEntry.dtend).diff(
parseICalDate(calendarEntry.dtstart),
Expand All @@ -188,8 +189,9 @@ export function extractCalendarChange(
}
} else {
// handle series
const calendarEntry = map.get(newCalendarEntry.uid)
?.singleOrRecurringEntry;
const calendarEntry = map.get(
newCalendarEntry.uid,
)?.singleOrRecurringEntry;
if (
isRRuleEntry(newCalendarEntry) &&
calendarEntry &&
Expand Down
Loading

0 comments on commit 6e73a80

Please sign in to comment.