Skip to content

Commit 50f08f2

Browse files
committed
Remove support for Node.js 4
1 parent 4e3d9ff commit 50f08f2

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ language: node_js
22
node_js:
33
- '8'
44
- '6'
5-
- '4'
65
before_install:
76
- npm i -g npm

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ environment:
22
matrix:
33
- nodejs_version: '8'
44
- nodejs_version: '6'
5-
- nodejs_version: '4'
65
install:
76
- ps: Install-Product node $env:nodejs_version
87
- npm install --global npm@latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "sindresorhus.com"
1111
},
1212
"engines": {
13-
"node": ">=4"
13+
"node": ">=6.12.3 <7 || >=8.9.4"
1414
},
1515
"scripts": {
1616
"test": "xo && ava"

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import dotProp from 'dot-prop';
66
import test from 'ava';
77
import m from '.';
88

9-
const get = dotProp.get;
9+
const {get} = dotProp;
1010

1111
function run(pkg, additionalOpts) {
1212
const filepath = tempWrite.sync(JSON.stringify(pkg), 'package.json');

0 commit comments

Comments
 (0)