Merge pull request #57 from artslidd/develop

Develop
This commit is contained in:
Arthur Belleville 2025-12-05 10:43:50 +01:00 committed by GitHub
commit 30540ac706
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -50,6 +50,7 @@ export const TabloEventsSection = ({ tablo, isAdmin }: TabloEventsSectionProps)
const formatTime = (timeStr: string) => {
if (!timeStr) return "";
return timeStr.slice(0, 5); // HH:MM
};

View file

@ -32,11 +32,21 @@
},
"deploy:staging": {
"dependsOn": ["build:staging"],
"passThroughEnv": [
"CLOUDFLARE_ACCOUNT_ID",
"CLOUDFLARE_API_TOKEN",
"CUSTOM_BUILD_VAR"
],
"cache": false,
"outputLogs": "new-only"
},
"deploy:prod": {
"dependsOn": ["build:prod"],
"passThroughEnv": [
"CLOUDFLARE_ACCOUNT_ID",
"CLOUDFLARE_API_TOKEN",
"CUSTOM_BUILD_VAR"
],
"cache": false,
"outputLogs": "new-only"
}