Skip to content

Commit

Permalink
Update local build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
whymarrh committed Nov 21, 2018
1 parent d8d0648 commit 4cbf41d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 4cbf41d

Please sign in to comment.