runtime: require node >= 10.13.0 LTS

At the moment, NodeJS 10.x is the lowest supported LTS version. NodeJS 8.x is no
longer supported upstream.

Implements #3835.
Planned in #3650.
This commit is contained in:
muxator 2020-04-08 23:22:13 +02:00 committed by muxator
parent 6cba0f1dc5
commit 684f374ece
6 changed files with 9 additions and 7 deletions

View file

@ -115,7 +115,7 @@ Your plugin must also contain a [package definition file](https://docs.npmjs.com
"author": "USERNAME (REAL NAME) <MAIL@EXAMPLE.COM>",
"contributors": [],
"dependencies": {"MODULE": "0.3.20"},
"engines": { "node": ">= 8.9.0"}
"engines": { "node": ">= 10.13.0"}
}
```