neocrates 0.1.19

A comprehensive Rust library for various utilities and helpers
Documentation
# Variables
GIT := git
PNPM := pnpm
CARGO := cargo
DOCKER := docker
CD := cd

NEOCRATES_PATH := ./neocrates


# Function to check if there are changes to commit
define git_push_if_needed
	@if [ -n "$$($(GIT) status --porcelain)" ]; then \
		$(GIT) add .; \
		$(GIT) commit -m "$(m)"; \
		$(GIT) push; \
	else \
		echo "No changes to commit"; \
	fi
endef

define git_commit_if_needed
	@if [ -n "$$($(GIT) status --porcelain)" ]; then \
		$(GIT) add .; \
		$(GIT) commit -m "$(m)"; \
	else \
		echo "No changes to commit"; \
	fi
endef

# Git run add commit push
git-run:
	$(call git_push_if_needed)

# Git run add commit push
git-commit:
	$(call git_commit_if_needed)

# Build facade crate
build:
	@echo "===> Build neocrates"
	$(CARGO) build -p neocrates || exit 1

# Test facade crate
test:
	@echo "===> Test neocrates"
	$(CARGO) test -p neocrates || exit 1

# neocrate watch commands
clean:
	@echo "Cleaning neocrate in $(NEOCRATES_PATH)..."
	$(CARGO) clean
# neocrate dry run
dry-run:
	@echo "===> Dry-run neocrates"
	$(call git_commit_if_needed)
	$(CARGO) publish -p neocrates --dry-run --registry crates-io || exit 1

# Publish facade crate to crates.io (requires `cargo login`)
publish:
	@echo "===> Publishing neocrates"
	$(call git_commit_if_needed)
	$(CARGO) publish -p neocrates --registry crates-io || exit 1
	$(CARGO) clean