Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request gruntjs#151 from kylezeeuwen/master
Browse files Browse the repository at this point in the history
Move file creation logging to grunt.verbose
  • Loading branch information
sindresorhus committed Aug 4, 2014
2 parents 8a1a397 + b292387 commit bd59ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/coffee.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@ module.exports = function(grunt) {

var writeCompiledFile = function(path, output) {
if (writeFile(path, output)) {
grunt.log.writeln('File ' + chalk.cyan(path) + ' created.');
grunt.verbose.writeln('File ' + chalk.cyan(path) + ' created.');
}
};
var writeSourceMapFile = function(path, output) {
if (writeFile(path, output)) {
grunt.log.writeln('File ' + chalk.cyan(path) + ' created (source map).');
grunt.verbose.writeln('File ' + chalk.cyan(path) + ' created (source map).');
}
};
};

0 comments on commit bd59ba1

Please sign in to comment.