task updates
This commit is contained in:
Vendored
+22
-4
@@ -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}"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user