Files
chore/.vscode/tasks.json
2026-02-14 17:00:43 -05:00

31 lines
607 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Save Work In Progress",
"type": "shell",
"command": "git",
"args": ["savewip"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
}
},
{
"label": "Load Work In Progress",
"type": "shell",
"command": "git",
"args": ["loadwip"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
}
}
]
}