aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-06-02 07:11:38 +0800
committerGitHub <noreply@github.com>2018-06-02 07:11:38 +0800
commit475bb1ca92e9e25433fc8d4f934a5f4a98063603 (patch)
treef1edb732fa7a49fc3c0654d62c99711ba2870580
parent8a2d75f3a63e8c34744a7ef17620f0950e97f2c1 (diff)
parent545043a36479780a85579a84dbb71d98a729023e (diff)
downloadtangerine-wallet-browser-475bb1ca92e9e25433fc8d4f934a5f4a98063603.tar.gz
tangerine-wallet-browser-475bb1ca92e9e25433fc8d4f934a5f4a98063603.tar.zst
tangerine-wallet-browser-475bb1ca92e9e25433fc8d4f934a5f4a98063603.zip
Merge pull request #4438 from wjmelements/yarn
Suggest Yarn for Node >= 10
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 970bd758f..70faa8856 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,9 @@ If you're a web dapp developer, we've got two types of guides for you:
## Building locally
- Install [Node.js](https://nodejs.org/en/) version 6.3.1 or later.
- - Install local dependencies with `npm install`.
+ - Install dependencies:
+ - For node versions up to and including 9, install local dependencies with `npm install`.
+ - For node versions 10 and later, install [Yarn](https://yarnpkg.com/lang/en/docs/install/) and use `yarn install`.
- Install gulp globally with `npm install -g gulp-cli`.
- Build the project to the `./dist/` folder with `gulp build`.
- Optionally, to rebuild on file changes, run `gulp dev`.