Skip to content

Commit c76b4bf

Browse files
authored
Merge pull request #387 from ably/dependabot/npm_and_yarn/dev-minor-patch-6534590351
chore(dev-deps): bump the dev-minor-patch group across 1 directory with 9 updates
2 parents 0a16033 + 6303531 commit c76b4bf

45 files changed

Lines changed: 393 additions & 782 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/web-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"@vercel/node": "^5.7.15",
2727
"@vitejs/plugin-react": "^6.0.1",
2828
"autoprefixer": "^10.5.0",
29-
"eslint": "^10.2.1",
29+
"eslint": "^10.3.0",
3030
"eslint-plugin-react-hooks": "^7.1.1",
3131
"eslint-plugin-react-refresh": "^0.5.2",
32-
"globals": "^17.5.0",
32+
"globals": "^17.6.0",
3333
"postcss": "^8.5.14",
3434
"tailwindcss": "^4.2.4",
3535
"typescript": "~5.9.3",

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -152,22 +152,22 @@
152152
"@types/react": "^19.2.14",
153153
"@types/react-dom": "^19.2.3",
154154
"@types/ws": "^8.5.11",
155-
"@typescript-eslint/eslint-plugin": "^8.58.2",
156-
"@typescript-eslint/parser": "^8.58.2",
157-
"@vitest/coverage-v8": "^4.1.4",
155+
"@typescript-eslint/eslint-plugin": "^8.59.2",
156+
"@typescript-eslint/parser": "^8.59.2",
157+
"@vitest/coverage-v8": "^4.1.5",
158158
"@vitest/eslint-plugin": "^1.6.16",
159-
"@vitest/ui": "^4.1.4",
159+
"@vitest/ui": "^4.1.5",
160160
"dotenv": "^17.4.2",
161-
"eslint": "^10.2.0",
161+
"eslint": "^10.3.0",
162162
"eslint-config-prettier": "^10.1.8",
163163
"eslint-plugin-n": "^17.24.0",
164164
"eslint-plugin-prettier": "^5.5.5",
165-
"eslint-plugin-react-hooks": "^7.1.0",
165+
"eslint-plugin-react-hooks": "^7.1.1",
166166
"eslint-plugin-unicorn": "^64.0.0",
167167
"execa": "^9.6.1",
168168
"fs-extra": "^11.3.4",
169169
"get-port": "^7.2.0",
170-
"globals": "^17.5.0",
170+
"globals": "^17.6.0",
171171
"http-server": "^14.1.1",
172172
"nock": "^14.0.12",
173173
"node-pty": "^1.1.0",
@@ -179,7 +179,7 @@
179179
"strip-ansi": "^7.2.0",
180180
"ts-node": "11.0.0-beta.1",
181181
"typescript": "^5.9.3",
182-
"vitest": "^4.1.4"
182+
"vitest": "^4.1.5"
183183
},
184184
"engines": {
185185
"node": ">=22.0.0"

packages/react-web-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"react-dom": "^19.2.5",
6262
"tsup": "^8.5.1",
6363
"typescript": "^5.9.3",
64-
"vite": "8.0.9",
64+
"vite": "8.0.10",
6565
"vitest": "^4.1.5"
6666
},
6767
"publishConfig": {

packages/react-web-cli/src/AblyCliTerminal.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ describe("AblyCliTerminal - Connection Status and Animation", () => {
812812

813813
// Provide countdown callback and verify it's hooked
814814
const callback = vi.mocked(GlobalReconnect.setCountdownCallback).mock
815-
.calls[0][0] as (remaining: number) => void;
815+
.calls[0][0];
816816
act(() => {
817817
callback(2000);
818818
});

packages/react-web-cli/src/AblyCliTerminal.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3053,9 +3053,7 @@ const AblyCliTerminalInner = (
30533053
secondaryTerm.current.writeln(
30543054
`\r\n--- ${message.payload === "error" ? "Error" : "Session Ended (from server)"}: ${reason} ---`,
30553055
);
3056-
updateSecondaryConnectionStatus(
3057-
message.payload as ConnectionStatus,
3058-
);
3056+
updateSecondaryConnectionStatus(message.payload);
30593057

30603058
if (
30613059
secondaryTerm.current &&

0 commit comments

Comments
 (0)