chore(tasks.json): slim

This commit is contained in:
Rim 2025-02-28 18:41:50 -05:00
parent 097d4beabb
commit 32a5035328

22
.vscode/tasks.json vendored
View File

@ -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": [],