From 308d8ddcbade51d7df349e740fe1748fe4774eaa Mon Sep 17 00:00:00 2001 From: bobby dresser Date: Fri, 27 Jul 2018 09:34:03 -0700 Subject: remove Web Store warning --- README.md | 2 -- 1 file changed, 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 86d515377..8a1eda46c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # MetaMask Browser Extension [![Build Status](https://circleci.com/gh/MetaMask/metamask-extension.svg?style=shield&circle-token=a1ddcf3cd38e29267f254c9c59d556d513e3a1fd)](https://circleci.com/gh/MetaMask/metamask-extension) [![Coverage Status](https://coveralls.io/repos/github/MetaMask/metamask-extension/badge.svg?branch=master)](https://coveralls.io/github/MetaMask/metamask-extension?branch=master) [![Greenkeeper badge](https://badges.greenkeeper.io/MetaMask/metamask-extension.svg)](https://greenkeeper.io/) [![Stories in Ready](https://badge.waffle.io/MetaMask/metamask-extension.png?label=in%20progress&title=waffle.io)](https://waffle.io/MetaMask/metamask-extension) -🚨 As of 7/25/18, the MetaMask extension has been removed from the Chrome Web Store. In the meantime, you can download the latest version of MetaMask on our [Releases](https://github.com/MetaMask/metamask-extension/releases) page and load it in Chrome by visiting `chrome://extensions`. For more detailed steps, see our [help center](https://consensys.zendesk.com/hc/en-us/articles/360004134152-How-to-Install-MetaMask-Manually). Follow [@metamask_io](https://twitter.com/metamask_io) on Twitter for updates. 🚨 - ## Support If you're a user seeking support, [here is our support site](https://metamask.helpscoutdocs.com/). -- cgit v1.2.3 From 391ed177e087c79533e5c21b2027c4d363536c63 Mon Sep 17 00:00:00 2001 From: William Morriss Date: Fri, 27 Jul 2018 22:46:16 -0700 Subject: restore npm install instructions --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8a1eda46c..95a6115e1 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,12 @@ 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. + - Update npm to 6.1.0: ```npm install -g npm@6.1.0``` - Install dependencies: - - If you are using nvm (recommended) running `nvm use` will automatically choose the right node version for you. + ```bash +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`. -- cgit v1.2.3 From 5d26e886f31e6b4c7c9618f1e58e74274ea56fa4 Mon Sep 17 00:00:00 2001 From: William Morriss Date: Fri, 27 Jul 2018 22:54:26 -0700 Subject: reduce npm install to one line --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 95a6115e1..2a6f16a48 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,7 @@ If you're a web dapp developer, we've got two types of guides for you: - 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. - Update npm to 6.1.0: ```npm install -g npm@6.1.0``` - - Install dependencies: - ```bash -npm install - ``` + - 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`. -- cgit v1.2.3 From cfb74680e26bd287a1ac2e3cc4bebddb23136a4e Mon Sep 17 00:00:00 2001 From: William Morriss Date: Mon, 30 Jul 2018 16:59:08 -0700 Subject: Select not Update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2a6f16a48..38aceaf7e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ If you're a web dapp developer, we've got two types of guides for you: - 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. - - Update npm to 6.1.0: ```npm install -g npm@6.1.0``` + - 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`. -- cgit v1.2.3