Skip to content

Commit 2e9636a

Browse files
authoredMay 2, 2019
Drop support for Node v6 (#392)
* chore: node 6 eol * chore: upgrade dependencies * style: adopt conventional commits BREAKING CHANGE: dropping Node v6 support because end-of-life
1 parent f97a993 commit 2e9636a

File tree

5 files changed

+4376
-1835
lines changed

5 files changed

+4376
-1835
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ os:
77
- windows
88

99
node_js:
10-
- "6"
1110
- "8"
1211
- "10"
1312
- "11"
13+
- "12"
1414

1515
cache: npm
1616

1717
matrix:
1818
fast_finish: true
1919
allow_failures:
20-
- os: windows
20+
- os: windows
2121

2222
after_success: if [[ "$TRAVIS_OS_NAME" != 'windows' ]]; then npm run flow; fi

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Dotenv is a zero-dependency module that loads environment variables from a `.env
1010
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
1111
[![Coverage Status](https://img.shields.io/coveralls/motdotla/dotenv/master.svg?style=flat-square)](https://coveralls.io/github/motdotla/dotenv?branch=coverall-intergration)
1212
[![LICENSE](https://img.shields.io/github/license/motdotla/dotenv.svg)](LICENSE)
13+
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
1314

1415
## Install
1516

‎appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Test against these versions of Node.js.
44
environment:
55
matrix:
6-
- nodejs_version: "6"
76
- nodejs_version: "8"
87
- nodejs_version: "10"
98

‎package-lock.json

+4,365-1,827
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lint": "standard",
99
"postlint": "standard-markdown",
1010
"pretest": "npm run lint",
11-
"test": "tap tests/*.js --100"
11+
"test": "tap tests/*.js --100",
12+
"prerelease": "npm test",
13+
"release": "standard-version --sign"
1214
},
1315
"repository": {
1416
"type": "git",
@@ -27,15 +29,16 @@
2729
"license": "BSD-2-Clause",
2830
"devDependencies": {
2931
"decache": "^4.5.1",
30-
"flow-bin": "^0.92.1",
31-
"sinon": "^7.2.3",
32+
"flow-bin": "^0.98.0",
33+
"sinon": "^7.3.2",
3234
"standard": "^12.0.1",
3335
"standard-markdown": "^5.0.1",
34-
"tap": "^12.5.1"
36+
"standard-version": "^5.0.2",
37+
"tap": "^13.1.2"
3538
},
3639
"dependencies": {},
3740
"engines": {
38-
"node": ">=6"
41+
"node": ">=8"
3942
},
4043
"standard": {
4144
"ignore": [

0 commit comments

Comments
 (0)
Please sign in to comment.