Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/syuji-higa/gulp-cr-lf-replace
- Owner: syuji-higa
- License: mit
- Created: 2015-02-16T06:05:50.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-07-15T19:43:58.000Z (over 4 years ago)
- Last Synced: 2024-12-19T08:16:15.412Z (about 2 months ago)
- Topics: coffeescript, gulp, javascript
- Language: CoffeeScript
- Homepage: https://www.npmjs.com/package/gulp-cr-lf-replace
- Size: 5.86 KB
- Stars: 3
- Watchers: 4
- 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 './'
```