Browse Source

Merge pull request #155 from Empact/enhance/drop-node-7

Drop node 7 support, declare minimum versions in package.json
renovate/lint-staged-8.x
JimmyMow 7 years ago
committed by GitHub
parent
commit
962e234383
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .babelrc
  2. 2
      .travis.yml
  3. 2
      README.md
  4. 4
      package.json

2
.babelrc

@ -2,7 +2,7 @@
"presets": [
["env", {
"targets": {
"node": 7,
"node": 8,
"browsers": "electron 1.7"
},
"useBuiltIns": true

2
.travis.yml

@ -7,8 +7,8 @@ env:
- TEST=test-ci
node_js:
- node
- 8
- 7
cache:
apt: true

2
README.md

@ -15,7 +15,7 @@ Join us on [slack](https://join.slack.com/t/zaphq/shared_invite/enQtMjkyNTAxNDA3
## Requirements
* **Node.js version >= 7, npm version >= 4 and [yarn](https://yarnpkg.com/lang/en/docs/install/)**
* **Node.js version >= 8, npm version >= 5 and [yarn](https://yarnpkg.com/lang/en/docs/install/)**
## Install

4
package.json

@ -33,6 +33,10 @@
"install-grpc": "cd app && npm run install-grpc"
},
"browserslist": "electron 1.7",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"build": {
"productName": "ZapDesktop",
"appId": "org.develar.ZapDesktop",

Loading…
Cancel
Save