chore: update deps and drop Node 8.x support
- Upgrade dependencies - Drop Node 8.x support as it has reached EOL BREAKING CHANGE: Node 8.x is no longer supported.
This commit is contained in:
parent
b0b138a74d
commit
36d2b18a17
|
@ -1,6 +1,6 @@
|
|||
sudo: false
|
||||
language: node_js
|
||||
node_js:
|
||||
- "8"
|
||||
- "10"
|
||||
- "12"
|
||||
- "14"
|
||||
|
|
10
package.json
10
package.json
|
@ -4,7 +4,7 @@
|
|||
"license": "MIT",
|
||||
"version": "3.4.0",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
"node": ">=10"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -20,18 +20,18 @@
|
|||
"@types/express": "^4.16.0",
|
||||
"accepts": "^1.3.3",
|
||||
"debug": "^4.1.1",
|
||||
"ejs": "^2.6.1",
|
||||
"ejs": "^3.1.3",
|
||||
"fast-safe-stringify": "^2.0.6",
|
||||
"http-status": "^1.1.2",
|
||||
"js2xmlparser": "^4.0.0",
|
||||
"strong-globalize": "^5.0.2"
|
||||
"strong-globalize": "^6.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^4.1.2",
|
||||
"eslint": "^6.5.1",
|
||||
"eslint": "^7.0.0",
|
||||
"eslint-config-loopback": "^13.1.0",
|
||||
"express": "^4.16.3",
|
||||
"mocha": "^6.2.1",
|
||||
"mocha": "^7.1.2",
|
||||
"supertest": "^4.0.2"
|
||||
},
|
||||
"browser": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title><%= data.name || data.message %></title>
|
||||
<style><%- include style.css %></style>
|
||||
<style><%- include('style.css') %></style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
|
|
Loading…
Reference in New Issue