Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/syuji-higa/gulp-cr-lf-replace

Line feed code convert Gulp plugin.
https://github.com/syuji-higa/gulp-cr-lf-replace

coffeescript gulp javascript

Last synced: about 1 month ago
JSON representation

Line feed code convert Gulp plugin.

Awesome Lists containing this project

README

        

gulp-cr-lf-replace
===============

```
gulp = require 'gulp'
crLfReplace = require 'gulp-cr-lf-replace'

gulp.task 'cr-lf-replace', ->
gulp
.src './htdocs/**/*.html'
.pipe crLfReplace
changeCode: 'CR+LF' # CR+LF, LF, CR
.pipe gulp.dest './'
```