From ed76f4e4af7cc77a959f11ed9f1f1e401797fe32 Mon Sep 17 00:00:00 2001 From: Matheus Fernandes Date: Tue, 22 Nov 2016 09:59:55 -0200 Subject: [PATCH] Remove the `start` task --- README.md | 3 ++- package.json | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2f3452b7..05360d1d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,8 @@ $ brew cask install hyper * If you are running Windows, install [VC++ Build Tools Technical Preview](http://go.microsoft.com/fwlink/?LinkId=691126) using the **Default Install option**; Install Python 2.7 and add it to your `%PATH%`; Run `npm config set msvs_version 2015 --global` 2. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device 3. Install the dependencies: `npm install` -4. Build the code, watch for changes and run the app: `npm start` +4. Build the code and watch for changes: `npm run dev` +5. In another terminal tab/window/pane, run the app: `npm run app` To make sure that your code works in the finished application, you can generate the binaries like this: diff --git a/package.json b/package.json index 680a2bba..ca5c2732 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "repository": "zeit/hyper", "scripts": { - "start": "concurrently --kill-others --raw \"npm run dev\" \"npm run app\"", + "start": "echo 'please run `npm run dev` in one tab and then `npm run app` in another one'", "app": "electron app", "dev": "webpack -w", "build": "cross-env NODE_ENV=production webpack", @@ -97,7 +97,6 @@ "babel-core": "^6.11.4", "babel-loader": "^6.2.4", "babel-preset-react": "^6.11.1", - "concurrently": "^3.0.0", "copy-webpack-plugin": "^4.0.0", "cross-env": "3.1.3", "electron": "1.4.7",