Run "uv sync -U" on vscode startup
This commit is contained in:
parent
c80dd721ef
commit
b11cfa03ea
1 changed files with 21 additions and 0 deletions
21
.vscode/tasks.json
vendored
Normal file
21
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "uv sync -U",
|
||||
"type": "shell",
|
||||
"command": "uv",
|
||||
"args": [
|
||||
"sync",
|
||||
"-U"
|
||||
],
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"runOptions": {
|
||||
"runOn": "folderOpen"
|
||||
},
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue