You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The help will print out all targets with their descriptions organized bellow their categories. The categories are represented by `##@` and the target descriptions by `##`.
30
34
# The awk commands is responsible to read the entire set of makefiles included in this invocation, looking for lines of the file as xyz: ## something, and then pretty-format the target and help. Then, if there's a line with ##@ something, that gets pretty-printed as a category.
@@ -53,6 +57,30 @@ build-all-platforms: clean tidy format ## Build the project for all platforms
53
57
GOOS=$(os) GOARCH=$(arch) go build $(COMMON_BUILD_ARGS) -o $(BINARY_NAME)-$(os)-$(arch)$(if$(findstring windows,$(os)),.exe,) ./cmd/kubernetes-mcp-server;\
54
58
))
55
59
60
+
.PHONY: npm
61
+
npm: build-all-platforms ## Create the npm packages
0 commit comments