prettier reformat for merge (and remove jpeg-turbo Again)

This commit is contained in:
modeco80
2024-06-22 21:26:49 -04:00
parent b0829d5bcf
commit 09d41617ed
16 changed files with 278 additions and 289 deletions

View File

@@ -34,7 +34,7 @@ try {
}
let exiting = false;
let VM : VM;
let VM: VM;
async function stop() {
if (exiting) return;
@@ -47,7 +47,7 @@ async function start() {
// Init the auth manager if enabled
let auth = Config.auth.enabled ? new AuthManager(Config.auth.apiEndpoint, Config.auth.secretKey) : null;
switch (Config.vm.type) {
case "qemu": {
case 'qemu': {
// Print a warning if qmpSockDir is set
// and the host OS is Windows, as this
// configuration will very likely not work.
@@ -67,7 +67,7 @@ async function start() {
VM = new QemuVM(def);
break;
}
case "vncvm": {
case 'vncvm': {
VM = new VNCVM(Config.vncvm);
break;
}