Skip to content

Commit

Permalink
chore: disable silent mode for builtin yarn command
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Dec 5, 2019
1 parent b941df7 commit 46b831e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -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

Expand Down

0 comments on commit 46b831e

Please sign in to comment.