Skip to content

Commit 67fc33a

Browse files
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>
1 parent 9de39dc commit 67fc33a

9 files changed

Lines changed: 188 additions & 184 deletions

File tree

apps/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"opus-recorder": "^8.0.3",
8989
"pako": "^3.0.0",
9090
"png-chunks-extract": "^1.0.0",
91-
"posthog-js": "1.399.2",
91+
"posthog-js": "1.399.5",
9292
"qrcode": "1.5.4",
9393
"re-resizable": "6.11.2",
9494
"react": "catalog:",
@@ -185,7 +185,7 @@
185185
"matrix-web-i18n": "catalog:",
186186
"mini-css-extract-plugin": "2.10.2",
187187
"modernizr": "^3.12.0",
188-
"oxfmt": "0.58.0",
188+
"oxfmt": "0.59.0",
189189
"playwright-core": "catalog:",
190190
"postcss": "8.5.19",
191191
"postcss-easings": "4.0.0",

apps/web/src/components/structures/ThreadPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ interface IProps {
3939
}
4040

4141
export enum ThreadFilterType {
42-
"My",
43-
"All",
42+
My,
43+
All,
4444
}
4545

4646
type ThreadPanelHeaderOption = {

apps/web/src/components/views/settings/devices/DeviceDetails.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ const DeviceDetails: React.FC<Props> = ({
104104
],
105105
},
106106
]
107-
.map((section) => // filter out falsy values
108-
({ ...section, values: section.values.filter((row) => !!row.value) }))
107+
.map((section) =>
108+
// filter out falsy values
109+
({ ...section, values: section.values.filter((row) => !!row.value) }),
110+
)
109111
.filter(
110112
(section) =>
111113
// then filter out sections with no values

apps/web/src/utils/beacon/useLiveBeacons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export const useLiveBeacons = (roomId: Room["roomId"], matrixClient: MatrixClien
2222
room?.currentState,
2323
RoomStateEvent.BeaconLiveness,
2424
() =>
25-
room?.currentState?.liveBeaconIds.map(
26-
(beaconIdentifier) => room.currentState.beacons.get(beaconIdentifier)!,
25+
room?.currentState?.liveBeaconIds.map((beaconIdentifier) =>
26+
room.currentState.beacons.get(beaconIdentifier)!,
2727
) || [],
2828
);
2929

apps/web/webpack.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@ const cssThemes = {
6666
};
6767

6868
// See docs/customisations.md
69-
let fileOverrides = {
70-
/* {[file: string]: string} */
71-
};
69+
let fileOverrides = {/* {[file: string]: string} */};
7270
try {
7371
const customisationsFile = fs.readFileSync("./customisations.json", "utf-8");
7472
fileOverrides = JSON.parse(customisationsFile);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"mermaid": "^11.13.0",
4848
"minimist": "^1.2.6",
4949
"nx": "23.1.0",
50-
"oxfmt": "0.58.0",
50+
"oxfmt": "0.59.0",
5151
"oxlint": "^1.70.0",
5252
"oxlint-tsgolint": "^0.24.0",
5353
"typescript": "catalog:ts6",

packages/shared-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"@vector-im/compound-web": "catalog:",
109109
"@vitejs/plugin-react": "catalog:",
110110
"@vitest/browser-playwright": "catalog:",
111-
"oxfmt": "0.58.0",
111+
"oxfmt": "0.59.0",
112112
"storybook": "^10.0.7",
113113
"storybook-addon-vis": "^4.0.0",
114114
"typedoc": "^0.28.16",

0 commit comments

Comments
 (0)