task updates

This commit is contained in:
John Lancaster
2026-07-02 23:23:11 -05:00
parent 94dd47cc19
commit a3ca1a65c2
+22 -4
View File
@@ -5,7 +5,12 @@
"label": "Ruff: Check", "label": "Ruff: Check",
"type": "shell", "type": "shell",
"command": "uv", "command": "uv",
"args": ["run", "ruff", "check", "."], "args": [
"run",
"ruff",
"check",
"."
],
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
@@ -15,7 +20,11 @@
"label": "Ty: Check", "label": "Ty: Check",
"type": "shell", "type": "shell",
"command": "uv", "command": "uv",
"args": ["run", "ty", "check"], "args": [
"run",
"ty",
"check"
],
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
@@ -25,7 +34,11 @@
"label": "Docs: Build", "label": "Docs: Build",
"type": "shell", "type": "shell",
"command": "uv", "command": "uv",
"args": ["run", "zensical", "build"], "args": [
"run",
"zensical",
"build"
],
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
@@ -56,7 +69,12 @@
"label": "Docker: Compose Up (Build)", "label": "Docker: Compose Up (Build)",
"type": "shell", "type": "shell",
"command": "docker", "command": "docker",
"args": ["compose", "up", "--build"], "args": [
"compose",
"up",
"--build",
"-d"
],
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },