mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-21 05:45:41 +02:00
Resolves #574 -- move npm to yarn everywhere else
This commit is contained in:
parent
ac880dad0f
commit
eaa42ce6c0
2 changed files with 2 additions and 3 deletions
|
@ -2,7 +2,7 @@ ports:
|
||||||
- port: 8000
|
- port: 8000
|
||||||
onOpen: open-preview
|
onOpen: open-preview
|
||||||
tasks:
|
tasks:
|
||||||
- init: npm install && npm install -g grunt-cli
|
- init: yarn install && yarn global add grunt-cli
|
||||||
command: >
|
command: >
|
||||||
grunt fastBuild &&
|
grunt fastBuild &&
|
||||||
printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'grunt fastBuild' and reload index.html.\n\n" &&
|
printf "\nWelcome to Learn Git Branching\nTo rebuild the app, simply run 'grunt fastBuild' and reload index.html.\n\n" &&
|
||||||
|
|
|
@ -81,7 +81,7 @@ The general workflow / steps are below:
|
||||||
```bash
|
```bash
|
||||||
git clone <your fork of the repo>
|
git clone <your fork of the repo>
|
||||||
cd learnGitBranching
|
cd learnGitBranching
|
||||||
npm install # to install all the node modules I depend on
|
yarn install
|
||||||
|
|
||||||
git checkout -b newAwesomeFeature
|
git checkout -b newAwesomeFeature
|
||||||
vim ./src/js/git/index.js # some changes
|
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)
|
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!
|
And everyone who has reported an issue that was successfully closed!
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue