From e37eb3888172131e19052a20a8334bb92e0b114e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Benitte?= Date: Thu, 7 Dec 2017 12:24:42 +0900 Subject: [PATCH] feat(publish): add packages build prior to publish --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index cadcd815f..ca0c9774b 100644 --- a/Makefile +++ b/Makefile @@ -111,6 +111,8 @@ packages-build: ##@packages build all packages @./node_modules/.bin/lerna run build packages-publish: ##@packages publish all packages + @make packages-build + @echo "${YELLOW}Publishing packages${RESET}" @./node_modules/.bin/lerna publish ---exact