Created
January 13, 2021 15:25
-
-
Save luismayta/580d065caebcf7549683c151ce1b450e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# See ./CONTRIBUTING.rst | |
# | |
yarn.help: | |
@echo ' yarn:' | |
@echo '' | |
@echo ' yarn command=(build|dev|start|export)' | |
@echo ' yarn.setup Install dependences of project' | |
@echo ' yarn.install Install dependences' | |
@echo ' yarn.dev dev project' | |
@echo ' yarn.start run project' | |
@echo ' yarn.export export project' | |
@echo ' yarn.build build or with stage=(prod)' | |
@echo '' | |
# setup download and install dependence. | |
.PHONY: yarn.setup | |
yarn.setup: | |
@echo "=====> setup dependence yarn..." | |
yarn install | |
@echo ${MESSAGE_HAPPY} | |
yarn.install: | |
$(docker-yarn-run) yarn install | |
yarn.start: | |
$(docker-yarn-run) yarn start | |
yarn.build: | |
@if [ -z "${stage}" ]; then \ | |
$(docker-yarn-run) yarn build; \ | |
else \ | |
$(docker-yarn-run) yarn build:${stage}; \ | |
fi | |
yarn.dev: | |
$(docker-yarn-run) yarn dev | |
yarn.export: | |
$(docker-yarn-run) yarn export | |
yarn: | |
@if [ -z "${command}" ]; then \ | |
make yarn.help;\ | |
fi | |
@if [ -n "${command}" ]; then \ | |
mkdir -p public;\ | |
$(docker-yarn-run) yarn ${command};\ | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment