Skip to content

fritx/gulp-eol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  

Information

Packagegulp-eol
Description Replace or append EOL end of file

Usage

eol(newline, append)

  • newline: [string] \n, \r\n or default os.EOL
  • append: [boolean] whether to append eol end of file if not any, default true
var eol = require('gulp-eol');

gulp.task('eol', function() {
  return gulp.src('./lib/*.js')
    .pipe(eol())
    .pipe(gulp.dest('./lib/'));
});

Releases

No releases published

Packages

No packages published