From df5c47c02bd358b807313a41e14b208723c926ec Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Wed, 21 Oct 2015 18:46:42 +0200 Subject: [PATCH] Replace a `console.log` in gulpfile.coffee ... with `process.stdout.write`. This means that there is only one `console.log` occurance in all .coffee files, which makes it easier to search for left-over temporary `console.log`s. --- gulpfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index bbd3510..a6fe3ef 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -255,7 +255,7 @@ parseLocaleFile = (fileContents) -> helpHTMLFile = 'help.html' gulp.task(helpHTMLFile, -> unless fs.existsSync(helpHTMLFile) - console.log(""" + process.stdout.write(""" First enable the “Copy to clipboard” line in help.coffee, show the help dialog and finally dump the clipboard into #{ helpHTMLFile }. """) -- 2.39.3