Development: update devcontainer setup, add documentation for pre-commit, set uv cache dir (#11882)

This commit is contained in:
Philipp Defner
2026-01-27 21:45:56 +01:00
committed by GitHub
parent 6d93ae93b4
commit 02002620d2
4 changed files with 51 additions and 24 deletions

View File

@@ -174,12 +174,22 @@
{
"label": "Maintenance: Install Frontend Dependencies",
"description": "Install frontend (pnpm) dependencies",
"type": "pnpm",
"script": "install",
"path": "src-ui",
"type": "shell",
"command": "pnpm install",
"group": "clean",
"problemMatcher": [],
"detail": "install dependencies from package"
"options": {
"cwd": "${workspaceFolder}/src-ui"
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": false,
"clear": true,
"revealProblems": "onProblem"
}
},
{
"description": "Clean install frontend dependencies and build the frontend for production",