mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 17:26:23 +02:00
chore: add lock file syncing in bump-version script
This commit is contained in:
parent
553843ab06
commit
4e2e94250c
3 changed files with 92 additions and 1 deletions
|
|
@ -56,5 +56,14 @@ bump_json "$REPO_ROOT/surfsense_browser_extension/package.json"
|
|||
bump_json "$REPO_ROOT/surfsense_desktop/package.json"
|
||||
bump_toml "$REPO_ROOT/surfsense_backend/pyproject.toml"
|
||||
|
||||
echo ""
|
||||
echo "Syncing lock files..."
|
||||
if command -v uv &>/dev/null; then
|
||||
(cd "$REPO_ROOT/surfsense_backend" && uv lock)
|
||||
echo " OK surfsense_backend/uv.lock"
|
||||
else
|
||||
echo " SKIP uv not found -- run 'uv lock' in surfsense_backend/ manually"
|
||||
fi
|
||||
|
||||
echo "---------------------------------"
|
||||
echo "Done. All packages set to $VERSION"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue