Drop support for Node.js version 8 (#171)

Node.js 8 reached End-of-Life on 31st December 2019. If you are still using Node.js 8, we recommend upgrading to version 10 or higher as soon as possible.

https://nodejs.org/en/about/releases/
This commit is contained in:
Elliot Lee
2020-05-12 22:04:22 -07:00
parent 63f4aa2b8d
commit df4c413d83
2 changed files with 2 additions and 2 deletions

View File

@@ -1,9 +1,9 @@
language: node_js
node_js:
- 8
- 10
- 12
- 13
- 14
script:
- yarn compile
- yarn lint

View File

@@ -49,6 +49,6 @@
},
"license": "ISC",
"engines": {
"node": ">= 8"
"node": ">= 10"
}
}