chore: fix unrelated lint errors to unblock release CI
Some checks failed
Monorepo Pipeline / ⚡ Prioritize Release (push) Successful in 1s
Monorepo Pipeline / 🧹 Lint (push) Successful in 52s
Monorepo Pipeline / 🏗️ Build (push) Failing after 1m0s
Monorepo Pipeline / 🧪 Test (push) Successful in 4m2s
Monorepo Pipeline / 🚀 Release (push) Has been skipped
Monorepo Pipeline / 🐳 Build Directus (Base) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Gatekeeper (Product) (push) Has been skipped
Monorepo Pipeline / 🐳 Build Build-Base (push) Has been skipped
Monorepo Pipeline / 🐳 Build Production Runtime (push) Has been skipped
🏥 Server Maintenance / 🧹 Prune & Clean (push) Failing after 6s

This commit is contained in:
2026-02-15 17:51:59 +01:00
parent 2ba091f738
commit 7dcef0bc28
4 changed files with 6 additions and 6 deletions

2
.env
View File

@@ -1,5 +1,5 @@
# Project
IMAGE_TAG=1.8.4
IMAGE_TAG=v1.8.10
PROJECT_NAME=at-mintel
PROJECT_COLOR=#82ed20
GITEA_TOKEN=ccce002e30fe16a31a6c9d5a414740af2f72a582

View File

@@ -1,4 +1,4 @@
/* global module, require */
import path from "node:path";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import { Heading, Section, Text, Button, Link } from "@react-email/components";
import { Heading, Section, Text, Button } from "@react-email/components";
import { MintelLayout } from "../layouts/MintelLayout";
export interface SiteAuditTemplateProps {

View File

@@ -11,9 +11,9 @@ const entryPoints = [
resolve(__dirname, 'src/server.ts')
];
try {
mkdirSync(resolve(__dirname, 'dist'), { recursive: true });
} catch (e) { }
} catch (_e) {
// Ignore folder creation errors if it already exists
}
console.log(`Building entry points...`);