1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: we are not ready for node 14

This commit is contained in:
Ivar Conradi Østhus 2020-05-02 09:12:36 +02:00
parent 770336e181
commit 5600b3fd61
2 changed files with 2 additions and 4 deletions

View File

@ -87,9 +87,7 @@ async function start(opts) {
throw err;
}
const instance = await createApp(options);
return instance;
return createApp(options);
}
module.exports = {

View File

@ -24,7 +24,7 @@
"url": "https://github.com/unleash/unleash/issues"
},
"engines": {
"node": ">=12"
"node": ">=12 <14"
},
"license": "Apache-2.0",
"main": "./lib/server-impl.js",