https://github.com/phizaz/gulp-file-log
gulp logging files by console.log its contents
https://github.com/phizaz/gulp-file-log
Last synced: 2 months ago
JSON representation
gulp logging files by console.log its contents
- Host: GitHub
- URL: https://github.com/phizaz/gulp-file-log
- Owner: phizaz
- Created: 2015-08-24T13:07:25.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-24T13:10:05.000Z (almost 10 years ago)
- Last Synced: 2025-02-03T17:04:06.574Z (4 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-file-log
gulp logging files by console.log its contents## Usage
```
var gulp = require('gulp');
var fileLog = require('gulp-file-log');
var concat = require('gulp-concat');
var buffer = require('vinyl-buffer');gulp.task('concat', function() {
return gulp.src('src/*.js')
.pipe(fileLog())
.pipe(concat('concat.js'))
.pipe(gulp.dest('dest'));
});
```
will result the contents of files in the ```src``` directory before the files are concatenated.