fix(core): update to latest standards

This commit is contained in:
2018-07-02 23:09:52 +02:00
parent e7ec765ed5
commit 33f234cf73
3 changed files with 2361 additions and 14 deletions

View File

@ -34,11 +34,11 @@ export let install = async versionArg => {
plugins.beautylog.log(`now installing node version ${versionArg}`);
let version: string;
if (versionArg === 'stable') {
version = '9';
version = '10';
} else if (versionArg === 'lts') {
version = '8';
} else if (versionArg === 'legacy') {
version = '8';
version = '9';
} else {
version = versionArg;
}