From 46b831e8f3890e238ae3a95145461be136b35ffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Fri, 29 Nov 2019 22:37:48 -0500 Subject: [PATCH] chore: disable silent mode for builtin yarn command --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 30a5c744f42b..50ff34f61cba 100644 --- a/Makefile +++ b/Makefile @@ -246,15 +246,15 @@ endif publish-eslint: $(call set-json-field, ./eslint/$(PKG)/package.json, private, false) - cd eslint/$(PKG); $(YARN) publish + cd eslint/$(PKG); yarn publish $(call set-json-field, ./eslint/$(PKG)/package.json, private, true) bootstrap-only: lerna-bootstrap -$(YARN)-install: clean-all - $(YARN) --ignore-engines +yarn-install: clean-all + yarn --ignore-engines -lerna-bootstrap: $(YARN)-install +lerna-bootstrap: yarn-install # todo: remove `-- -- --ignore-engines` in Babel 8 $(YARN) lerna bootstrap -- -- --ignore-engines