We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915b448 commit 12fd3a2Copy full SHA for 12fd3a2
4 files changed
Makefile
@@ -833,7 +833,7 @@ node_modules: pnpm-lock.yaml
833
@touch .venv
834
835
.PHONY: update
836
-update: update-js update-py ## update js and py dependencies
+update: update-js update-py update-go ## update dependencies
837
838
.PHONY: update-js
839
update-js: node_modules ## update js dependencies
@@ -851,6 +851,12 @@ update-py: node_modules ## update py dependencies
851
uv sync
852
853
854
+.PHONY: update-go
855
+update-go: ## update go dependencies
856
+ $(GO) get -u ./...
857
+ $(MAKE) tidy
858
+ $(MAKE) go-licenses
859
+
860
.PHONY: webpack
861
webpack: $(WEBPACK_DEST) ## build webpack files
862
0 commit comments