Last active
August 7, 2018 14:45
-
-
Save codingedgar/e0e98a57bdd02fefd8a184e16540b396 to your computer and use it in GitHub Desktop.
Un buen flujo de trabajo en Node.js: Makefile (recursive command)
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
instalar_yarn: | |
brew install yarn | |
iniciar_yarn: | |
yarn init | |
instalar_packetes_basicos: | |
yarn add koa koa-bodyparser koa-router | |
todos: | |
make instalar_yarn | |
make iniciar_yarn | |
make instalar_packetes_basicos |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment