From ea32194a6c3697a71ac8098396e4d54d17ea9ba0 Mon Sep 17 00:00:00 2001 From: Kelly Jensen Date: Thu, 29 Jun 2017 15:27:40 -0600 Subject: [PATCH] feat(deps): add support for node@8 Fixes #2754 --- .travis.yml | 1 + appveyor.yml | 1 + docs/intro/01-installation.md | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1fd3be813..39aa4a3cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ node_js: - 4 - 5 - 7 + - 8 env: global: diff --git a/appveyor.yml b/appveyor.yml index 468e6cc71..d6e456420 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,6 +7,7 @@ environment: - nodejs_version: "5" - nodejs_version: "6" - nodejs_version: "7" + - nodejs_version: "8" matrix: fast_finish: true diff --git a/docs/intro/01-installation.md b/docs/intro/01-installation.md index 3b822b4d2..e2fe67852 100644 --- a/docs/intro/01-installation.md +++ b/docs/intro/01-installation.md @@ -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 diff --git a/package.json b/package.json index df7ab1f9a..17e2043e8 100644 --- a/package.json +++ b/package.json @@ -426,7 +426,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",