2018-05-22 11:29:49 +00:00
|
|
|
import open = require('opn');
|
|
|
|
import { ChildProcess } from 'child_process';
|
2017-03-12 20:20:43 +00:00
|
|
|
|
2018-05-22 11:29:49 +00:00
|
|
|
export let openUrl = async urlArg => {
|
2019-04-16 06:26:16 +00:00
|
|
|
if (!(process.env.CI === 'true')) {
|
2018-05-22 11:42:21 +00:00
|
|
|
const childProcess = await open(urlArg, {
|
|
|
|
wait: false
|
|
|
|
});
|
|
|
|
return childProcess;
|
|
|
|
} else {
|
2019-04-16 06:26:16 +00:00
|
|
|
return null;
|
2018-05-22 11:42:21 +00:00
|
|
|
}
|
2018-05-22 11:29:49 +00:00
|
|
|
};
|