Linting shouldn't have an own script

This commit is contained in:
Leo Lamprecht 2016-09-22 07:51:26 +02:00
parent ee1405997d
commit 103a0fa8c5
No known key found for this signature in database
GPG key ID: C251EE4DA454117B
2 changed files with 4 additions and 5 deletions

View file

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

View file

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