eng - reduce some unused deps (#231221)

This commit is contained in:
Benjamin Pasero
2024-10-13 12:38:11 +02:00
committed by GitHub
parent 104d04f3c5
commit c025c19d14
7 changed files with 5 additions and 454 deletions

View File

@@ -14,7 +14,7 @@ const cp = require('child_process');
const minimist = require('minimist');
const fancyLog = require('fancy-log');
const ansiColors = require('ansi-colors');
const opn = require('opn');
const open = require('open');
const https = require('https');
const APP_ROOT = path.join(__dirname, '..');
@@ -80,7 +80,7 @@ async function main() {
startServer(serverArgs);
if (openSystemBrowser) {
opn(`http://${HOST}:${PORT}/`);
open(`http://${HOST}:${PORT}/`);
}
}