style(ProductCompare.ts, GenerateProvider.ts): improve code formatting for better readability

This commit is contained in:
Nawaz Dhandala
2026-01-22 18:11:21 +00:00
parent 70f9444aab
commit 0a6035ed65
2 changed files with 5 additions and 2 deletions

View File

@@ -1190,7 +1190,8 @@ const products: Dictionary<Product> = {
},
{
title: "Unified Platform",
description: "One dashboard for monitoring, alerting, status, and incidents",
description:
"One dashboard for monitoring, alerting, status, and incidents",
icon: "unified",
},
],

View File

@@ -96,7 +96,9 @@ async function main(): Promise<void> {
Logger.info("📝 Step 9: Writing VERSION file...");
const rootVersionPath: string = path.resolve(__dirname, "../../VERSION");
const providerVersionPath: string = path.resolve(providerDir, "VERSION");
const versionContent: string = fs.readFileSync(rootVersionPath, "utf-8").trim();
const versionContent: string = fs
.readFileSync(rootVersionPath, "utf-8")
.trim();
const versionFileContent: string = `${versionContent}
# This file is auto-generated from the root VERSION file.
# It ensures the Terraform provider is regenerated for each OneUptime release.