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
This commit is contained in:
Doug Parker
2025-09-24 14:27:18 -07:00
committed by kirjs
parent 0270ed232e
commit 076ccbf7fe
+4 -6
View File
@@ -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();
}
/**