Skip to content

Commit

Permalink
update about messaging to be used in Quick Server, phetsims/aqua#166
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Apr 14, 2023
1 parent 5babe54 commit 295929e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/grunt/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ const lint = async ( repos, options ) => {
// Output results on errors.
if ( totalWarnings + totalErrors > 0 ) {

inProgressErrorLogging && console.log( '\n\nAll results (repeated from above)\n' );
// This exact string is used in aqua QuickServer to parse messaging for slack reporting
const IMPORTANT_MESSAGE_DO_NOT_EDIT = 'All results (repeated from above)';
inProgressErrorLogging && console.log( `\n\n${IMPORTANT_MESSAGE_DO_NOT_EDIT}\n` );

await consoleLogResults( allResults );

Expand Down

0 comments on commit 295929e

Please sign in to comment.