Remove the start task

This commit is contained in:
Matheus Fernandes 2016-11-22 09:59:55 -02:00
parent 31721e5c29
commit ed76f4e4af
No known key found for this signature in database
GPG key ID: DD07CA4EA7B65C4F
2 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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",