New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-filelogger

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-filelogger

A gulp plugin that logs out the file names in the stream. Displays if empty.

  • 0.4.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-filelog

NPM version Build Status Coverage Status Dependency Status

FORKED FROM gulp-filelog, having some, imo, usefull formatting changes

A gulp plugin that logs out the file names in the stream. Displays a count and if empty. Useful for debugging.

Usage

First, install gulp-filelog as a development dependency:

npm install --save-dev gulp-filelog

Then, add it to your gulpfile.js:

Output the file names in the stream

var filelog = require('gulp-filelog');

gulp.src('./src/*.ext')
    .pipe(filelog())
	.pipe(gulp.dest('./dist'));

Output the file names in the stream with a task name identifier

var filelog = require('gulp-filelog');

gulp.src('./src/*.ext')
    .pipe(filelog('someTask'))
	.pipe(gulp.dest('./dist'));

API

filelog([task])

task

Type: String

The name of original task, this will be outputted to the stdout along with the file name.

License

MIT License

Keywords

FAQs

Package last updated on 24 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc