Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit d816d5f

Browse files
chore: drops nodejs@6 support
BREAKING CHANGE: Drops support for NodeJS version 6.
1 parent f2d5304 commit d816d5f

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.travis.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# GH_TOKEN and NPM_TOKEN are expected to be set
22
# in https://travis-ci.org/apiaryio/gavel.js/settings
3-
language: "node_js"
3+
language: 'node_js'
44
node_js:
5-
- "6"
6-
- "8"
7-
- "10"
5+
- '8'
6+
- '10'
87
cache:
98
directories:
10-
- "node_modules"
9+
- 'node_modules'
1110
before_install:
12-
- "npm -g install npm@6"
11+
- 'npm -g install npm@6'
1312
install:
14-
- "npm install --no-save"
13+
- 'npm install --no-save'
1514
script:
16-
- "npm run ci:lint || true" # TODO fix all lint errors
17-
- "npm run ci:test"
15+
- 'npm run ci:lint || true' # TODO fix all lint errors
16+
- 'npm run ci:test'
1817
after_success:
19-
- "npm run ci:release"
18+
- 'npm run ci:release'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Validator of HTTP transactions (JavaScript implementation)",
55
"main": "lib/gavel.js",
66
"engines": {
7-
"node": ">= 4"
7+
"node": ">= 8"
88
},
99
"bin": {
1010
"gavel": "bin/gavel"

0 commit comments

Comments
 (0)