Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop node.js v4 support #3364

Merged
merged 1 commit into from Aug 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions .travis.yml
Expand Up @@ -40,9 +40,6 @@ jobs:
- <<: *node
node_js: '6'

- <<: *node
node_js: '4'

- script: npm start test.bundle test.browser
install: npm ci # we need the native modules here
addons:
Expand Down Expand Up @@ -78,9 +75,6 @@ jobs:
- <<: *smoke
node_js: '6'

- <<: *smoke
node_js: '4'

- stage: precache
script: true

Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Expand Up @@ -6,7 +6,6 @@ environment:
- nodejs_version: '9'
- nodejs_version: '8'
- nodejs_version: '6'
- nodejs_version: '4'
install:
- ps: Install-Product node $env:nodejs_version x64
- set CI=true
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Expand Up @@ -9,7 +9,7 @@
- Ruby
- RubyGems
- Bundler (`gem install bundler`)
- Node.js v4.0.0 or greater
- Node.js v6.x or greater

## Development

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -92,7 +92,7 @@ or as a development dependency for your project:
$ npm install --save-dev mocha
```

> To install Mocha v3.0.0 or newer with `npm`, you will need `npm` v2.14.2 or newer. Additionally, to run Mocha, you will need Node.js v4 or newer.
> Mocha currently requires Node.js v6.x or newer.

Mocha can also be installed via [Bower](https://bower.io) (`bower install mocha`), and is available at [cdnjs](https://cdnjs.com/libraries/mocha).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -449,7 +449,7 @@
"_mocha": "./bin/_mocha"
},
"engines": {
"node": ">= 4.0.0"
"node": ">= 6.0.0"
},
"scripts": {
"prepublishOnly": "nps test clean build",
Expand Down