From ddba4d906c10617877e1b92732f7f2856ba08852 Mon Sep 17 00:00:00 2001 From: RaffaelW <146560011+RaffaelW@users.noreply.github.com> Date: Thu, 5 Mar 2026 22:00:30 +0100 Subject: [PATCH] add(tasks): implement update task for project dependencies --- tasks.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks.py b/tasks.py index 4533f54..196c8a8 100644 --- a/tasks.py +++ b/tasks.py @@ -48,3 +48,8 @@ def config(c): def saveconfig(c): """Save current config as sdkconfig.defaults""" c.run("idf.py save-defconfig") + +@task +def update(c): + """Update project dependencies""" + c.run("idf.py update-dependencies") \ No newline at end of file