From e4cf30ef07664f18bcc542e9c397d92ea1f4e92a Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Sat, 1 Mar 2025 19:18:51 -0800 Subject: [PATCH] fix tailwind version issue --- .../contrib/void/browser/react/src/styles.css | 2 -- .../contrib/void/common/toolsService.ts | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/styles.css b/src/vs/workbench/contrib/void/browser/react/src/styles.css index 59197583..8b7d995a 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/styles.css +++ b/src/vs/workbench/contrib/void/browser/react/src/styles.css @@ -3,8 +3,6 @@ * Licensed under the Apache License, Version 2.0. See LICENSE.txt for more information. *--------------------------------------------------------------------------------------*/ -@tailwind base; -@tailwind components; @tailwind utilities; diff --git a/src/vs/workbench/contrib/void/common/toolsService.ts b/src/vs/workbench/contrib/void/common/toolsService.ts index 09385e25..95dcb045 100644 --- a/src/vs/workbench/contrib/void/common/toolsService.ts +++ b/src/vs/workbench/contrib/void/common/toolsService.ts @@ -68,6 +68,26 @@ export const voidTools = { required: ['query'], }, + + // create_file: { + // name: 'create_file', + // description: `Creates a file at the given path. Fails gracefully if the file already exists by doing nothing.`, + // params: { + // uri: { type: 'string', description: undefined }, + // }, + // required: ['uri'], + // }, + + // create_folder: { + // name: 'create_folder', + // description: `Creates a folder at the given path. Fails gracefully if the folder already exists by doing nothing.`, + // params: { + // uri: { type: 'string', description: undefined }, + // }, + // required: ['uri'], + // }, + + // go_to_definition: { // },