You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
463 B

# Usage Examples
There are three formats you can use to run this task.
## Short
```js
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"]
},
```
## Long (specific targets with per target options)
```js
clean: {
build: {
src: ["path/to/dir/one", "path/to/dir/two"]
}
}
```