added gitignore

This commit is contained in:
Kasper Rynning-Tønnesen
2015-11-29 13:38:52 +01:00
parent 95bb0c3919
commit fbb9f9b745
3868 changed files with 12 additions and 11 deletions

9
node_modules/gulp-util/lib/log.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
var chalk = require('chalk');
var dateformat = require('dateformat');
module.exports = function(){
var time = '['+chalk.grey(dateformat(new Date(), 'HH:MM:ss'))+']';
process.stdout.write(time + ' ');
console.log.apply(console, arguments);
return this;
};