Resolves #574 -- move npm to yarn everywhere else

This commit is contained in:
Peter Cottle 2019-04-29 14:13:59 -07:00
parent ac880dad0f
commit eaa42ce6c0
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@ ports:
- port: 8000
onOpen: open-preview
tasks:
- init: npm install && npm install -g grunt-cli
- init: yarn install && yarn global add grunt-cli
command: >
grunt fastBuild &&
printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'grunt fastBuild' and reload index.html.\n\n" &&

View file

@ -81,7 +81,7 @@ The general workflow / steps are below:
```bash
git clone <your fork of the repo>
cd learnGitBranching
npm install # to install all the node modules I depend on
yarn install
git checkout -b newAwesomeFeature
vim ./src/js/git/index.js # some changes
@ -165,4 +165,3 @@ And the following heroes for assisting in translating:
Also huge shoutout for everyone who has put up a pull request that was pulled! Check out the 30+ contributors we have in the [Contributors View](https://github.com/pcottle/learnGitBranching/graphs/contributors)
And everyone who has reported an issue that was successfully closed!