Skip to content

Commit

Permalink
Require Node 6.9.x.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorccu committed Feb 15, 2017
1 parent 247b3bf commit 1beb13c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1beb13c

Please sign in to comment.