diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-11-22 04:22:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 04:22:01 +0800 |
commit | 804b273cec61246f0d23efd461ccd2cc5c64bf22 (patch) | |
tree | 2591ff5a9fe64f2dbd9fa089f5c51e8d0141be24 | |
parent | ae8626eceb255618d5cdeb5aba7ce2dd377d2c0c (diff) | |
parent | 4cbf41d3193edf61f3b387a20235559b5edd9a47 (diff) | |
download | tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar.gz tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar.bz2 tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar.lz tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar.xz tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.tar.zst tangerine-wallet-browser-804b273cec61246f0d23efd461ccd2cc5c64bf22.zip |
Merge pull request #5810 from whymarrh/bump-nvmrc
Bump Node version to 8.13
-rw-r--r-- | .nvmrc | 2 | ||||
-rw-r--r-- | README.md | 17 |
2 files changed, 10 insertions, 9 deletions
@@ -1 +1 @@ -v8.11.3 +v8.13 @@ -26,14 +26,15 @@ 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 8.11.3 and npm version 6.1.0 - - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you. - - Select npm 6.1.0: ```npm install -g npm@6.1.0``` - - Install dependencies: ```npm 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`. - - To package .zip files for distribution, run `gulp zip`, or run the full build & zip with `gulp dist`. +- Install [Node.js](https://nodejs.org) version 8 and the latest available npm@6 + - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you. + - If you install Node.js manually, ensure you're using npm@6 + - Install npm@6 using `npm install -g npm@6` +- Install dependencies: `npm 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`. +- To package .zip files for distribution, run `gulp zip`, or run the full build & zip with `gulp dist`. Uncompressed builds can be found in `/dist`, compressed builds can be found in `/builds` once they're built. |