fix(core): update

This commit is contained in:
2022-03-18 02:15:17 +01:00
parent 1e5e1ced6a
commit f23760abc6
12 changed files with 18178 additions and 1055 deletions

View File

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