From 09fe241a7e7f29bb2714c6f6ba22ad3417910a82 Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Sun, 17 Jun 2018 14:00:11 +0200 Subject: [PATCH] docs(advanced): remove redundant install steps Remove the `install-grpc` installation step as it is redundant. See #420 --- ADVANCED.md | 3 +-- app/package.json | 3 +-- package.json | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/ADVANCED.md b/ADVANCED.md index 15e6e327..1433f173 100644 --- a/ADVANCED.md +++ b/ADVANCED.md @@ -21,12 +21,11 @@ git clone https://github.com/LN-Zap/zap-desktop.git ### Installing Dependencies -Install all the dependencies with yarn + install grpc: +Install all the dependencies with yarn: ```bash cd zap-desktop yarn -npm run install-grpc ``` ## Lightning Network Daemon (lnd) diff --git a/app/package.json b/app/package.json index c3a7313c..2f68fbc3 100644 --- a/app/package.json +++ b/app/package.json @@ -10,8 +10,7 @@ "url": "https://github.com/LN-Zap/zap-desktop" }, "scripts": { - "postinstall": "npm rebuild --runtime=electron --target=1.8.4 --disturl=https://atom.io/download/atom-shell --build-from-source", - "install-grpc": "cd node_modules/grpc && git submodule update --init && npm run electron-build -- --target=1.8.4" + "postinstall": "npm rebuild --runtime=electron --target=1.8.4 --disturl=https://atom.io/download/atom-shell --build-from-source" }, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index ba3bf2d1..11a36820 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,7 @@ "test-ci": "npm run package && npm run test && npm run test-e2e", "test-all": "npm run lint && npm run lint-styles && npm run flow && npm run build && npm run test && npm run test-e2e", "test-e2e": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 node --trace-warnings ./test/runTests.js e2e", - "test-watch": "npm test -- --watch", - "install-grpc": "cd app && npm run install-grpc" + "test-watch": "npm test -- --watch" }, "browserslist": "electron 1.8", "engines": {