1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +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; throw err;
} }
const instance = await createApp(options); return createApp(options);
return instance;
} }
module.exports = { module.exports = {

View File

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