mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Linting shouldn't have an own script
This commit is contained in:
parent
ee1405997d
commit
103a0fa8c5
2 changed files with 4 additions and 5 deletions
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue