chore: drop make update* targets (#38845)

We no longer need these with renovate and if desired I run `updates` via
global command, e.g. no need to keep it a dependency.
This commit is contained in:
silverwind
2026-08-10 10:43:03 +02:00
committed by GitHub
parent 9c915e4e1a
commit 26e373542a
3 changed files with 0 additions and 33 deletions
-22
View File
@@ -602,28 +602,6 @@ node_modules: pnpm-lock.yaml
uv sync
@touch .venv
.PHONY: update
update: update-go update-js update-py ## update dependencies
.PHONY: update-go
update-go: ## update go dependencies
$(GO) get -u ./...
$(MAKE) tidy
.PHONY: update-js
update-js: node_modules ## update js dependencies
pnpm exec updates -u -f package.json
rm -rf node_modules pnpm-lock.yaml
pnpm install
@touch node_modules
.PHONY: update-py
update-py: node_modules ## update py dependencies
pnpm exec updates -u -f pyproject.toml
rm -rf .venv uv.lock
uv sync
@touch .venv
.PHONY: vite
vite: $(FRONTEND_DEST) ## build vite files