fix(core): update

This commit is contained in:
2019-04-16 08:26:16 +02:00
parent 4f0923a4c1
commit 3e91a37247
8 changed files with 1720 additions and 527 deletions

View File

@ -2,12 +2,12 @@ import open = require('opn');
import { ChildProcess } from 'child_process';
export let openUrl = async urlArg => {
if(!(process.env.CI === 'true')) {
if (!(process.env.CI === 'true')) {
const childProcess = await open(urlArg, {
wait: false
});
return childProcess;
} else {
return null
return null;
}
};