fix tailwind version issue

This commit is contained in:
Andrew Pareles 2025-03-01 19:18:51 -08:00
parent 5655280d45
commit e4cf30ef07
2 changed files with 20 additions and 2 deletions

View file

@ -3,8 +3,6 @@
* Licensed under the Apache License, Version 2.0. See LICENSE.txt for more information.
*--------------------------------------------------------------------------------------*/
@tailwind base;
@tailwind components;
@tailwind utilities;

View file

@ -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: {
// },