diff --git a/README.md b/README.md index 31dc13ed..07b8435b 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,6 @@ # vinyl-fs [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status][depstat-image]][depstat-url] ## Information - - - - - - - - - - - - -
Packagevinyl-fs
DescriptionVinyl adapter for the file system
Node Version>= 0.10
+











Packagevinyl-fs
DescriptionVinyl adapter for the file system
Node Version>= 0.10
## Usage @@ -67,6 +55,8 @@ fs.src(['*.js', '!b*.js']) - sourcemaps - `true` or `false` if you want files to have sourcemaps enabled. - Default is `false`. + - Will load inline sourcemaps and resolve sourcemap links from files + - Uses `gulp-sourcemaps` under the hood - followSymlinks - `true` if you want to recursively resolve symlinks to their targets; set to `false` to preserve them as symlinks. - Default is `true`. - `false` will make `file.symlink` equal the original symlink's target path. @@ -109,6 +99,11 @@ This is just [glob-watcher]. - overwrite - Specify if existing files with the same path should be overwritten or not. - Default is `true`, to always overwrite existing files. + - sourcemaps - + - Default is `null` aka do not write sourcemaps. + - Use `.` to write sourcemaps as files + - Uses `gulp-sourcemaps` under the hood + - Returns a Readable/Writable stream. - On write the stream will save the [vinyl] File to disk at the folder/cwd specified. - After writing the file to disk, it will be emitted from the stream so you can keep piping these around.