Update npm non-major dependencies (#34320)

* Update npm non-major dependencies

* Oxfmt

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2026-07-17 14:14:07 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Michael Telatynski
parent 9de39dc72b
commit 67fc33ad98
9 changed files with 188 additions and 184 deletions
+2 -2
View File
@@ -88,7 +88,7 @@
"opus-recorder": "^8.0.3",
"pako": "^3.0.0",
"png-chunks-extract": "^1.0.0",
"posthog-js": "1.399.2",
"posthog-js": "1.399.5",
"qrcode": "1.5.4",
"re-resizable": "6.11.2",
"react": "catalog:",
@@ -185,7 +185,7 @@
"matrix-web-i18n": "catalog:",
"mini-css-extract-plugin": "2.10.2",
"modernizr": "^3.12.0",
"oxfmt": "0.58.0",
"oxfmt": "0.59.0",
"playwright-core": "catalog:",
"postcss": "8.5.19",
"postcss-easings": "4.0.0",
@@ -39,8 +39,8 @@ interface IProps {
}
export enum ThreadFilterType {
"My",
"All",
My,
All,
}
type ThreadPanelHeaderOption = {
@@ -104,8 +104,10 @@ const DeviceDetails: React.FC<Props> = ({
],
},
]
.map((section) => // filter out falsy values
({ ...section, values: section.values.filter((row) => !!row.value) }))
.map((section) =>
// filter out falsy values
({ ...section, values: section.values.filter((row) => !!row.value) }),
)
.filter(
(section) =>
// then filter out sections with no values
+2 -2
View File
@@ -22,8 +22,8 @@ export const useLiveBeacons = (roomId: Room["roomId"], matrixClient: MatrixClien
room?.currentState,
RoomStateEvent.BeaconLiveness,
() =>
room?.currentState?.liveBeaconIds.map(
(beaconIdentifier) => room.currentState.beacons.get(beaconIdentifier)!,
room?.currentState?.liveBeaconIds.map((beaconIdentifier) =>
room.currentState.beacons.get(beaconIdentifier)!,
) || [],
);
+1 -3
View File
@@ -66,9 +66,7 @@ const cssThemes = {
};
// See docs/customisations.md
let fileOverrides = {
/* {[file: string]: string} */
};
let fileOverrides = {/* {[file: string]: string} */};
try {
const customisationsFile = fs.readFileSync("./customisations.json", "utf-8");
fileOverrides = JSON.parse(customisationsFile);