Skip to content
Closed
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
4 changes: 2 additions & 2 deletions docs/recipes/delete-files-folder.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ You might want to delete some files before running your build. Since deleting fi
Let's use the [`del`](https://github.com/sindresorhus/del) module for this example as it supports multiple files and [globbing](https://github.com/sindresorhus/multimatch#globbing-patterns):

```sh
$ npm install --save-dev gulp@next del
$ npm install --save-dev del
```

Imagine the following file structure:
Expand Down Expand Up @@ -49,7 +49,7 @@ You might want to delete some files after processing them in a pipeline.
We'll use [vinyl-paths](https://github.com/sindresorhus/vinyl-paths) to easily get the file path of files in the stream and pass it to the `del` method.

```sh
$ npm install --save-dev gulp@next del vinyl-paths
$ npm install --save-dev del vinyl-paths
```

Imagine the following file structure:
Expand Down