mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Remove the start task
This commit is contained in:
parent
31721e5c29
commit
ed76f4e4af
2 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue