Skip to content

Commit

Permalink
feat(deps): add support for node@8
Browse files Browse the repository at this point in the history
Fixes #2754
  • Loading branch information
kellyjensen committed Jul 24, 2017
1 parent 69978ee commit 7feaee3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ node_js:
- 4
- 5
- 7
- 8

env:
global:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -6,6 +6,7 @@ environment:
- nodejs_version: "5"
- nodejs_version: "6"
- nodejs_version: "7"
- nodejs_version: "8"

matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion docs/intro/01-installation.md
Expand Up @@ -5,7 +5,7 @@ Karma runs on [Node.js] and is available as an [NPM] package.
On Mac or Linux we recommend using [NVM](https://github.com/creationix/nvm). On Windows, download Node.js
from [the official site](https://nodejs.org/) or use the [NVM PowerShell Module](https://www.powershellgallery.com/packages/nvm).

Note: Karma currently works on Node.js **0.10**, **0.12.x**, **4.x**, **5.x**, **6.x**, and **7.x**. See [FAQ] for more info.
Note: Karma currently works on Node.js **0.10**, **0.12.x**, **4.x**, **5.x**, **6.x**, **7.x**, and **8.x**. See [FAQ] for more info.

## Installing Karma and plugins

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -428,7 +428,7 @@
"karma": "./bin/karma"
},
"engines": {
"node": "0.10 || 0.12 || 4 || 5 || 6 || 7"
"node": "0.10 || 0.12 || 4 || 5 || 6 || 7 || 8"
},
"version": "1.7.0",
"license": "MIT",
Expand Down

0 comments on commit 7feaee3

Please sign in to comment.