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

@@ -7,7 +7,7 @@
const cp = require('child_process');
const path = require('path');
const opn = require('opn');
const open = require('open');
const minimist = require('minimist');
async function main() {
@@ -33,7 +33,7 @@ async function main() {
const serverArgs = process.argv.slice(2).filter(v => v !== '--launch');
const addr = await startServer(serverArgs);
if (args['launch']) {
opn(addr);
open(addr);
}
}