Added the "lib-release" task to the Makefile file.

This commit is contained in:
2025-09-18 16:55:35 +02:00
parent 82929796e3
commit c2faa56d09
+5 -2
View File
@@ -19,10 +19,13 @@ export $(shell sed 's/=.*//' $(environment))
# LIBRARY
lib-build: ## Builds the project locally
lib-build: ## Builds the library
@swift build
lib-test: ## Runs the tests of the library
lib-release: ## Releases the library
@swift build -c release
lib-test: ## Runs the unit tests for the library
@swift test \
--disable-xctest \
--enable-code-coverage \