From 98ae22bd1b34e1cff899edec9aca088a680d18d7 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Mon, 12 May 2025 18:18:11 +0200 Subject: [PATCH] Chore(UI): update some devDependencies in package.json --- pkgs/webview-ui/app/package.json | 10 +++++----- pkgs/webview-ui/app/src/api/index.tsx | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/webview-ui/app/package.json b/pkgs/webview-ui/app/package.json index 0db479bd6..32298f48c 100644 --- a/pkgs/webview-ui/app/package.json +++ b/pkgs/webview-ui/app/package.json @@ -32,23 +32,23 @@ "typescript-eslint": "^7.10.0", "vite": "^5.0.11", "vite-plugin-solid": "^2.8.2", - "vitest": "^1.6.0" + "vitest": "^1.6.0", + "@types/json-schema": "^7.0.15", + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "vite-plugin-solid-svg": "^0.8.1" }, "dependencies": { - "@babel/plugin-syntax-import-attributes": "^7.27.1", "@floating-ui/dom": "^1.6.8", "@modular-forms/solid": "^0.21.0", "@solid-primitives/storage": "^3.7.1", "@solidjs/router": "^0.14.2", "@tanstack/eslint-plugin-query": "^5.51.12", "@tanstack/solid-query": "^5.51.2", - "@types/json-schema": "^7.0.15", "corvu": "^0.7.1", "material-icons": "^1.13.12", "nanoid": "^5.0.7", "solid-js": "^1.8.11", "solid-markdown": "^2.0.13", - "solid-toast": "^0.5.0", - "vite-plugin-solid-svg": "^0.8.1" + "solid-toast": "^0.5.0" } } diff --git a/pkgs/webview-ui/app/src/api/index.tsx b/pkgs/webview-ui/app/src/api/index.tsx index 7593c7caf..22bf87753 100644 --- a/pkgs/webview-ui/app/src/api/index.tsx +++ b/pkgs/webview-ui/app/src/api/index.tsx @@ -57,7 +57,7 @@ const _callApi = ( > )[method](args) as Promise>; // eslint-disable-next-line @typescript-eslint/no-explicit-any - const op_key = (promise as any)._webviewMessageId as string; + const op_key = (promise as any)._webviewMessageId as string; return { promise, op_key }; };