From 1b2a663a11d32d50dc6a35aa8c7de4729edbd314 Mon Sep 17 00:00:00 2001 From: Wendy Liga Date: Fri, 1 Aug 2025 15:01:32 +0700 Subject: [PATCH] build: add Makefile with bundle and publish targets Add Makefile to simplify common development tasks: - bundle: install dependencies - publish: push podspec to trunk with warnings allowed --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..efe2c23 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +bundle: + @bundle install +.PHONY: bundle + +publish: bundle + @bundle exec pod trunk push TPTweak.podspec --allow-warnings +.PHONY: publish