Last active
November 2, 2016 17:40
-
-
Save kostaspt/712c8ec22851fff5c12d722542a43680 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
# Install/Update dependencies with npm (using yarn), bower, composer and then runs gulp. | |
alias depsinstall="if [ -f ./package.json ]; then yarn ; fi && if [ -f ./bower.json ]; then bower install ; fi && if [ -f ./composer.json ]; then composer install ; fi && if [ -f ./gulpfile.js ]; then gulp ; fi" | |
alias depsupdate="if [ -f ./package.json ]; then yarn upgrade ; fi && if [ -f ./bower.json ]; then bower update ; fi && if [ -f ./composer.json ]; then composer update ; fi && if [ -f ./gulpfile.js ]; then gulp ; fi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment