mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-17 21:53:17 +02:00
Require Node 6.9.x.
This commit is contained in:
@@ -3,6 +3,9 @@
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2015
|
||||
},
|
||||
"rules": {
|
||||
// Possible errors
|
||||
"no-cond-assign": 2, // TODO: conflicts with no-extra-parens for while use case
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
|
||||
### Breaking changes
|
||||
|
||||
- Node v6.9.x or later is now required. Earlier versions will not work.
|
||||
- The `-C` shortcut for the `--no-cleanup` option has been removed due to the switch to [yargs](http://yargs.js.org). Please use the full `--no-cleanup` option instead.
|
||||
- Although likely not used by anyone, it was possible to give multiple ZeroMQ endpoints to options such as `--connect-push` by separating them with commas. This is still possible but now works in a different way due to the switch to [yargs](http://yargs.js.org). Comma-separated hosts in a single value are no longer accepted. If you need to specify multiple hosts, simply use the option as many times as you like. This change is unlikely to have any impact whatsoever on most users.
|
||||
- The `--devices` option of `stf doctor` has been removed due to unnecessary complexity.
|
||||
|
||||
@@ -99,7 +99,7 @@ As the product has evolved from an internal tool running in our internal network
|
||||
|
||||
## Requirements
|
||||
|
||||
* [Node.js](https://nodejs.org/) >= 4.2 (latest stable version preferred)
|
||||
* [Node.js](https://nodejs.org/) >= 6.9 (latest stable version preferred)
|
||||
* [ADB](http://developer.android.com/tools/help/adb.html) properly set up
|
||||
* [RethinkDB](http://rethinkdb.com/) >= 2.2
|
||||
* [GraphicsMagick](http://www.graphicsmagick.org/) (for resizing screenshots)
|
||||
|
||||
@@ -150,9 +150,8 @@
|
||||
"webpack": "^1.12.11",
|
||||
"webpack-dev-server": "^1.14.1"
|
||||
},
|
||||
"engineStrict": true,
|
||||
"engines": {
|
||||
"node": ">= 4.2"
|
||||
"node": ">= 6.9"
|
||||
},
|
||||
"externalDependencies": {
|
||||
"rethinkdb": ">= 2.2",
|
||||
|
||||
Reference in New Issue
Block a user