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",
"type": "shell",
"command": "uv",
"args": ["run", "ruff", "check", "."],
"args": [
"run",
"ruff",
"check",
"."
],
"options": {
"cwd": "${workspaceFolder}"
},
@@ -15,7 +20,11 @@
"label": "Ty: Check",
"type": "shell",
"command": "uv",
"args": ["run", "ty", "check"],
"args": [
"run",
"ty",
"check"
],
"options": {
"cwd": "${workspaceFolder}"
},
@@ -25,7 +34,11 @@
"label": "Docs: Build",
"type": "shell",
"command": "uv",
"args": ["run", "zensical", "build"],
"args": [
"run",
"zensical",
"build"
],
"options": {
"cwd": "${workspaceFolder}"
},
@@ -56,7 +69,12 @@
"label": "Docker: Compose Up (Build)",
"type": "shell",
"command": "docker",
"args": ["compose", "up", "--build"],
"args": [
"compose",
"up",
"--build",
"-d"
],
"options": {
"cwd": "${workspaceFolder}"
},