Fix Lints

This commit is contained in:
ingalls
2025-09-09 15:48:46 -06:00
parent 65a9cd47bb
commit 48153e6a32
2 changed files with 2 additions and 3 deletions

View File

@@ -14,8 +14,7 @@ for (const env of [
'API_URL'
]) {
if (!process.env[env]) {
console.error(`${env} Env Var must be set`);
process.exit();
throw new Error(`${env} Env Var must be set`);
}
}

View File

@@ -5,7 +5,7 @@ export default {
SubdomainPrefix: {
Description: 'Prefix of domain: ie "map" of map.example.com',
Type: 'String'
}
},
ComputeCpu: {
Description: 'The number of CPU units used by the task',
Type: 'Number',