From 45e3f77353286b9c9eb1a29aac2f96db30589799 Mon Sep 17 00:00:00 2001 From: Doug Parker Date: Wed, 24 Sep 2025 14:27:18 -0700 Subject: [PATCH] refactor(devtools): remove hard newlines from reviewer note (#64062) These newlines aren't necessary and potentially forced undesired formatting on the reviewer. PR Close #64062 --- devtools/tools/release.mts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/devtools/tools/release.mts b/devtools/tools/release.mts index 43c816bb772..ebcc3feb948 100644 --- a/devtools/tools/release.mts +++ b/devtools/tools/release.mts @@ -438,13 +438,11 @@ function generateChangelog(commits: string[]): string { * @returns The reviewer note. */ function getFirefoxReviewerNote(commitSha: string): string { - return `This is a monorepo and includes much more code than just the DevTools extension. The relevant -code is under \`devtools/...\` and \`devtools/README.md\` contains instructions for compiling -release builds locally. + return ` +This is a monorepo and includes much more code than just the DevTools extension. The relevant code is under \`devtools/...\` and \`devtools/README.md\` contains instructions for compiling release builds locally. -The uploaded source is equivalent to: -https://github.com/angular/angular/tree/${commitSha}/. -`; +The uploaded source is equivalent to: https://github.com/angular/angular/tree/${commitSha}/. + `.trim(); } /**