From 99c0b03941a978932078c805edd8847859f8a433 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Tue, 14 Nov 2023 19:36:01 +0200 Subject: [PATCH] Build package before release --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82b400e..9e0fba5 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ build: node_modules clean: rm -r dist node_modules -release: +release: build @read -p "Enter version bump (patch, minor, major): " bump && \ version=$$(npm version $$bump | grep -oP "(?<=v)[^']+") && \ echo "Version $$version created. Run 'make publish' to push the changes and publish the package."