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 year ago
JSON representation
Line feed code convert Gulp plugin.
- Host: GitHub
- URL: https://github.com/syuji-higa/gulp-cr-lf-replace
- Owner: syuji-higa
- License: mit
- Created: 2015-02-16T06:05:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-07-15T19:43:58.000Z (about 6 years ago)
- Last Synced: 2025-04-21T13:17:20.913Z (over 1 year ago)
- Topics: coffeescript, gulp, javascript
- Language: CoffeeScript
- Homepage: https://www.npmjs.com/package/gulp-cr-lf-replace
- Size: 5.86 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 './'
```