Skip to content

Commit 0f7c177

Browse files
committed
Add task to reinstall guidata in development environment
1 parent 7694ed8 commit 0f7c177

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.vscode/tasks.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,30 @@
207207
},
208208
"type": "shell"
209209
},
210+
{
211+
"label": "🔁 Reinstall guidata dev",
212+
"type": "shell",
213+
"windows": {
214+
"command": "pip uninstall -y guidata; Remove-Item -Recurse -Force .venv/Lib/site-packages/guidata -ErrorAction SilentlyContinue; pip install -e ../guidata",
215+
},
216+
"linux": {
217+
"command": "pip uninstall -y guidata && rm -rf .venv/lib/python*/site-packages/guidata && pip install -e ../guidata"
218+
},
219+
"osx": {
220+
"command": "pip uninstall -y guidata && rm -rf .venv/lib/python*/site-packages/guidata && pip install -e ../guidata"
221+
},
222+
"options": {
223+
"cwd": "${workspaceFolder}",
224+
"statusbar": {
225+
"hide": true
226+
}
227+
},
228+
"presentation": {
229+
"panel": "dedicated",
230+
"reveal": "always"
231+
},
232+
"problemMatcher": []
233+
},
210234
{
211235
"label": "🧹 Clean Up",
212236
"type": "shell",

0 commit comments

Comments
 (0)