Last active
March 5, 2019 15:43
-
-
Save exustash/dc2de441171b17ef02665885974c9a5a to your computer and use it in GitHub Desktop.
makefile-composition
This file contains hidden or 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
| release.package: r.bundle r.fingerprint r.package | |
| r.bundle: | |
| yarn run dist -- --APP_ENV=prod | |
| r.fingerprint: | |
| @echo "<!-- `date --utc` - revision: `git log -n 1 --pretty=format:'%h' -->" >> dist/prod/index.html | |
| r.package: | |
| tar -czvf nodeapp.tar.gz -C app/dist/prod . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment