diff --git a/README.md b/README.md index 4fb9cd4e..cea23f22 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ $ brew cask install hyperterm 1. If you are running Linux, install "icnsutils", "graphicsmagick" and "xz-utils" 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 app: `npm run dev` +4. Build the code, watch for changes and run the app: `npm run dev` To make sure that your code works in the finished application, you can generate the binaries like that: diff --git a/package.json b/package.json index 840719a0..c9565697 100644 --- a/package.json +++ b/package.json @@ -104,11 +104,10 @@ } }, "scripts": { - "dev": "concurrently --kill-others \"npm run dev-build\" \"npm run start\"", - "dev-build": "webpack --watch", - "lint": "xo", + "dev": "concurrently --kill-others \"npm run dev-build\" \"npm start\"", + "dev-build": "webpack -w", "build": "NODE_ENV=production webpack", - "test": "npm run lint && electron-mocha test/*", + "test": "xo && electron-mocha test/*", "start": "electron app", "prepublish": "npm test", "prepush": "npm test",