From 32a5035328b0a390ed88752f9e47f5ef70fc1873 Mon Sep 17 00:00:00 2001 From: Rim Date: Fri, 28 Feb 2025 18:41:50 -0500 Subject: [PATCH] chore(tasks.json): slim --- .vscode/tasks.json | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7f0b23e..20f1fa6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "🛠 Setup Virtual Environment", + "label": "Setup Virtual Environment", "type": "shell", "command": "${input:pythonPath}", "args": ["setup.py"], @@ -13,25 +13,12 @@ } }, { - "label": "🔨 Build Executable", - "type": "shell", - "command": "venv\\Scripts\\activate.ps1", - "problemMatcher": [], - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "🚀 Run Build Script", + "label": "Run Build Script", "type": "shell", "command": "venv\\Scripts\\python.exe", "args": [ "build.py" ], - // "options": { - // "cwd": "${workspaceFolder}/venv/Scripts" - // }, "problemMatcher": [], "group": { "kind": "build", @@ -42,9 +29,8 @@ "label": "🛠 Full Build", "type": "shell", "dependsOn": [ - "🛠 Setup Virtual Environment", - "🔨 Build Executable", - "🚀 Run Build Script" + "Setup Virtual Environment", + "Run Build Script" ], "dependsOrder": "sequence", "problemMatcher": [],