From 348601d90a2b5be46aebd5782ac914865f18a516 Mon Sep 17 00:00:00 2001 From: plouc Date: Sat, 13 May 2023 18:12:04 +0900 Subject: [PATCH] fix(deploy): debugging vercel build --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 822e58fbe..77869ab57 100644 --- a/Makefile +++ b/Makefile @@ -87,8 +87,8 @@ test: ##@0 global run all checks/tests (packages, website) .PHONY: vercel-build vercel-build: ##@0 global Build the website and storybook to vercel - @$(MAKE) website-build - @$(MAKE) storybook-build + $(MAKE) website-build + $(MAKE) storybook-build @cp -a storybook/storybook-static website/public/storybook .PHONY: clean-all @@ -169,6 +169,7 @@ pkgs-build: pkgs-types ##@1 packages build all packages @export SKIP_TYPES=TRUE; find ./packages -type d -maxdepth 1 ! -path ./packages \ | sed 's|^./packages/||' \ | xargs -P 8 -I '{}' sh -c '$(MAKE) pkg-build-{} || exit 255' + @echo "${GREEN}Packages built${RESET}" .PHONY: pkgs-types pkgs-types: ##@1 packages build all package types