Skip to content

Commit

Permalink
Update docs.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
XhmikosR committed Mar 23, 2016
1 parent 431cc70 commit d1533d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/clean-examples.md
Expand Up @@ -5,15 +5,15 @@ There are three formats you can use to run this task.
## Short

```js
clean: ["path/to/dir/one", "path/to/dir/two"]
clean: ['path/to/dir/one', 'path/to/dir/two']
```

## Medium (specific targets with global options)

```js
clean: {
build: ["path/to/dir/one", "path/to/dir/two"],
release: ["path/to/another/dir/one", "path/to/another/dir/two"]
build: ['path/to/dir/one', 'path/to/dir/two'],
release: ['path/to/another/dir/one', 'path/to/another/dir/two']
},
```

Expand All @@ -22,7 +22,7 @@ clean: {
```js
clean: {
build: {
src: ["path/to/dir/one", "path/to/dir/two"]
src: ['path/to/dir/one', 'path/to/dir/two']
}
}
```
Expand Down Expand Up @@ -57,7 +57,7 @@ clean: {
```js
// Deletes all .js files, but skips min.js files
clean: {
js: ["path/to/dir/*.js", "!path/to/dir/*.min.js"]
js: ['path/to/dir/*.js', '!path/to/dir/*.min.js']
}
```

Expand Down

0 comments on commit d1533d4

Please sign in to comment.