Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
## Features

- Recursively copy whole directory hierarchies
- Choose which files are copied by passing a filter function, regular expression or glob
- Choose which files are copied by passing a filter function, regular expression, or glob
- Rename files dynamically, including changing the output path
- Transform file contents using streams
- Choose whether to overwrite existing files
- Choose whether to copy system files
- Filters out [junk](https://www.npmjs.com/package/junk) files by default
- Uses [graceful-fs](https://www.npmjs.com/package/graceful-fs) and [mkdirp](https://www.npmjs.com/package/mkdirp) to avoid filesystem errors
- Emits start, finish and error events for each file that is processed
- Uses [`graceful-fs`](https://www.npmjs.com/package/graceful-fs) and [`mkdirp`](https://www.npmjs.com/package/mkdirp) to avoid filesystem errors
- Emits `start`, `finish`, and `error` events for each file that is processed
- Optional promise-based interface

## Examples
Expand Down Expand Up @@ -115,7 +115,7 @@ copy('src', 'dest', options)

### `copy(src, dest, [options], [callback])`

Recursively copy files and folders from `src` to `dest`
Recursively copy files and folders from `src` to `dest`.

#### Arguments:

Expand Down