Skip to content

Commit 0dcd09d

Browse files
committed
Add script to update system and project dependencies in WSL Ubuntu
- Implemented a shell script to update Ubuntu packages, including Azure CLI, Temurin JDK 21, Maven, Python, and pip. - Added functionality to refresh snap packages for Helm and NodeJS. - Included commands to update pip and Python project requirements from requirements.txt. - Ensured Azure CLI extensions are updated. - Added support for updating global Angular CLI and client workspace dependencies. - Integrated Maven dependency refresh for the server project. - Included Playwright browser installation and updates. - The script ensures a comprehensive update of both system and project dependencies.
1 parent 4ce33f5 commit 0dcd09d

3 files changed

Lines changed: 3578 additions & 3131 deletions

File tree

.vscode/tasks.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,16 @@
9696
},
9797
"problemMatcher": []
9898
},
99+
{
100+
"type": "shell",
101+
"command": "bash",
102+
"label": "Update dependencies",
103+
"args": ["scripts/update_dependencies.sh"],
104+
"options": {
105+
"cwd": "${workspaceFolder}"
106+
},
107+
"problemMatcher": []
108+
},
99109
{
100110
"type": "shell",
101111
"label": "Compose up",

0 commit comments

Comments
 (0)