From 06cf2ec50d1d68db9b80d5775e2769be0a8623d0 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:00:00 +0200 Subject: [PATCH] Fix Kan build failure (TS7016 nodemailer) (#14856) Co-authored-by: Cursor --- ct/kan.sh | 2 +- install/kan-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/kan.sh b/ct/kan.sh index 54b38c315..76e79ce64 100644 --- a/ct/kan.sh +++ b/ct/kan.sh @@ -50,7 +50,7 @@ function update_script() { cd /opt/kan set -a && source /opt/kan/.env && set +a export NEXT_PUBLIC_USE_STANDALONE_OUTPUT=true - $STD pnpm install --ignore-scripts + $STD pnpm install --ignore-scripts --prod=false export CI=true find /opt/kan/packages /opt/kan/apps -name 'tsconfig.json' -exec sed -i 's|"@kan/tsconfig/|"../../tooling/typescript/|g' {} + $STD pnpm build --filter=@kan/web diff --git a/install/kan-install.sh b/install/kan-install.sh index f39f76780..fbd220522 100644 --- a/install/kan-install.sh +++ b/install/kan-install.sh @@ -45,7 +45,7 @@ msg_info "Building Application" cd /opt/kan set -a && source /opt/kan/.env && set +a export NEXT_PUBLIC_USE_STANDALONE_OUTPUT=true NEXT_PUBLIC_BASE_URL BETTER_AUTH_TRUSTED_ORIGINS NEXT_PUBLIC_ALLOW_CREDENTIALS BETTER_AUTH_SECRET -$STD pnpm install --ignore-scripts +$STD pnpm install --ignore-scripts --prod=false export CI=true find /opt/kan/packages /opt/kan/apps -name 'tsconfig.json' -exec sed -i 's|"@kan/tsconfig/|"../../tooling/typescript/|g' {} + $STD pnpm build --filter=@kan/web