1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

Merge pull request #1589 from mikeller/require_node_10

Added requirement for node version 10.
This commit is contained in:
Michael Keller 2019-08-22 00:21:44 +12:00 committed by GitHub
commit c3a492f9b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -48,7 +48,7 @@ Unstable testing versions of the lates builds of the configurator for most platf
### Development
1. Install node.js
1. Install node.js (version 10 required)
2. Install yarn: `npm install yarn -g`
3. Change to project folder and run `yarn install`.
4. Run `yarn start`.

View file

@ -35,6 +35,9 @@
},
"author": "The Betaflight open source project.",
"license": "GPL-3.0",
"engines": {
"node": "10.x"
},
"dependencies": {
"bluebird": "^3.5.5",
"i18next": "^17.0.11",