| 12345678910111213141516171819202122232425262728293031 |
- // Generated by CoffeeScript 1.10.0
- var colors, green, log, magenta, map, path, print, ref;
- map = require('map-stream');
- path = require('path');
- ref = require('gulp-util'), log = ref.log, colors = ref.colors;
- green = colors.green, magenta = colors.magenta;
- print = function(format) {
- if (format == null) {
- format = function(filepath) {
- return filepath;
- };
- }
- return map(function(file, cb) {
- var filepath, formatted;
- filepath = magenta(path.relative(process.cwd(), file.path));
- formatted = format(filepath);
- if (formatted) {
- print.log(formatted);
- }
- return cb(null, file);
- });
- };
- print.log = log;
- module.exports = print;
|